SHOW:
|
|
- or go back to the newest paste.
1 | local Settings={["Un_Removable"]= "On"} | |
2 | local function mFloor(x) return x - x % 1 end | |
3 | local Un_Removable = tostring(Settings["Un_Removable"]):lower() == "on" | |
4 | if Un_Removable then | |
5 | Game.Workspace.DescendantRemoving:connect(function(Child) | |
6 | if not Remove_At_Will and Child == script then | |
7 | script:Clone().Parent = Game.Workspace | |
8 | end | |
9 | end) | |
10 | end | |
11 | - | Owners = "YOURNAMEHERE" |
11 | + | Owners = "ericthefabulous" |
12 | Player = game.Players:findFirstChild(Owners) | |
13 | if Player.Character:findFirstChild(Owners.."'s Orb V10 !") then | |
14 | Player.Character[Owners.."'s Orb V10 !"]:remove() | |
15 | end | |
16 | local RISE = 5 | |
17 | local FOLLOW = true | |
18 | local M = Instance.new("Model") | |
19 | local H = Instance.new("Humanoid") | |
20 | M.Parent = Player.Character | |
21 | H.Parent = M | |
22 | H.MaxHealth = 0 | |
23 | H.Health = 0 | |
24 | M.Name = Owners.."'s Orb V10 !" | |
25 | local p = Instance.new("Part") | |
26 | local BP = Instance.new("BodyPosition") | |
27 | local BG = Instance.new("BodyGyro") | |
28 | local SPL = Instance.new("SelectionPartLasso") | |
29 | BP.maxForce = Vector3.new(math.huge,math.huge,math.huge) | |
30 | SPL.Parent = p | |
31 | p.BrickColor = BrickColor.new("White") | |
32 | f=Instance.new("Fire") | |
33 | f.Name = "RedFire" | |
34 | f.Parent=p | |
35 | f.Heat = 3 | |
36 | f.Size = 2 | |
37 | f.Color=Color3.new(255,0,0) | |
38 | f.SecondaryColor = Color3.new(0,0,0) | |
39 | f=Instance.new("Fire") | |
40 | f.Name = "GreenFire" | |
41 | f.Parent=p | |
42 | f.Heat = 3 | |
43 | f.Size = 2 | |
44 | f.Color=Color3.new(0,255,0) | |
45 | f.SecondaryColor = Color3.new(0,0,0) | |
46 | f=Instance.new("Fire") | |
47 | f.Name = "BlueFire" | |
48 | f.Parent=p | |
49 | f.Heat = 3 | |
50 | f.Size = 2 | |
51 | f.Color=Color3.new(0,0,255) | |
52 | f.SecondaryColor = Color3.new(0,0,0) | |
53 | f=Instance.new("SpecialMesh") | |
54 | f.Parent=p | |
55 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
56 | f.MeshType = "FileMesh" | |
57 | f.Scale = Vector3.new(1,1,1) | |
58 | f.TextureId = "http://www.roblox.com/asset/?id=34914385" | |
59 | p.Name = "Head" | |
60 | p.Parent = M | |
61 | p.Shape = "Ball" | |
62 | p.formFactor = "Symmetric" | |
63 | p.Size = Vector3.new(1, 1, 1) | |
64 | p.TopSurface = 0 | |
65 | p.Locked = true | |
66 | BP.Parent = p | |
67 | function matchPlayer(str) | |
68 | local result = nil | |
69 | local players = game.Players:GetPlayers() | |
70 | for i,v in pairs(game.Players:GetPlayers()) do | |
71 | if (string.find(string.lower(v.Name), str) == 1) then | |
72 | if (result ~= nil) then return nil end | |
73 | result = v | |
74 | end | |
75 | end | |
76 | return result | |
77 | end | |
78 | --<------------------------------------------------------------------------>-- | |
79 | -- ... Say :: Before The Command ... -- | |
80 | --<------------------------------------------------------------------------>-- | |
81 | function onChatted(msg) | |
82 | if (string.sub(msg, 1, 2) == "::") then | |
83 | if (string.find(msg, string.lower("reset"))) then | |
84 | for word in msg:gmatch("%w+") do | |
85 | local player = matchPlayer(word) | |
86 | if (player ~= nil) then | |
87 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
88 | SPL.Color = BrickColor.new("Bright red") | |
89 | SPL.Part = p | |
90 | player.Character:BreakJoints() | |
91 | wait(1) | |
92 | SPL.Part = nil | |
93 | end | |
94 | end | |
95 | end | |
96 | if (string.find(msg, string.lower("trans"))) then | |
97 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
98 | if (number ~= nil) then | |
99 | p.Transparency = tonumber(number) | |
100 | end | |
101 | end | |
102 | if (string.find(msg, string.lower("ref"))) then | |
103 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
104 | if (number ~= nil) then | |
105 | p.Reflectance = tonumber(number) | |
106 | end | |
107 | end | |
108 | if (string.find(msg, string.lower("fire"))) then | |
109 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
110 | if (number ~= nil) then | |
111 | p.RedFire.size = tonumber(number) | |
112 | p.GreenFire.size = tonumber(number) | |
113 | p.BlueFire.size = tonumber(number) | |
114 | end | |
115 | end | |
116 | if (string.find(msg, string.lower("size"))) then | |
117 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
118 | if (number ~= nil) then | |
119 | f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number)) | |
120 | p.Size = Vector3.new(tonumber(number),tonumber(number),tonumber(number)) | |
121 | end | |
122 | end | |
123 | if (string.find(msg, string.lower("scale"))) then | |
124 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
125 | if (number ~= nil) then | |
126 | f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number)) | |
127 | end | |
128 | end | |
129 | if (string.find(msg, string.lower("loopkill"))) then | |
130 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
131 | if (number ~= nil) then | |
132 | for word in msg:gmatch("%w+") do | |
133 | local player = matchPlayer(word) | |
134 | if (player ~= nil) then | |
135 | K = 0 | |
136 | repeat | |
137 | if (player.Character:findFirstChild("Humanoid").Health > 0) then | |
138 | wait() | |
139 | if (player.Character:findFirstChild("Torso") ~= nil) then | |
140 | wait() | |
141 | if (player.Character ~= nil) then | |
142 | wait() | |
143 | K = K + 1 | |
144 | player.Character:BreakJoints() | |
145 | end | |
146 | end | |
147 | end | |
148 | wait() | |
149 | until tonumber(K) == tonumber(number) | |
150 | K = 0 | |
151 | end | |
152 | end | |
153 | end | |
154 | end | |
155 | if (string.find(msg, string.lower("rise"))) then | |
156 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
157 | if (number ~= nil) then | |
158 | RISE = tostring(number + 5) | |
159 | end | |
160 | end | |
161 | if (string.find(msg, string.lower("stay"))) then | |
162 | p.Anchored = true | |
163 | end | |
164 | if (string.find(msg, string.lower("follow"))) then | |
165 | p.Anchored = false | |
166 | end | |
167 | if (string.find(msg, string.lower("off sp"))) then | |
168 | sp.Enabled = false | |
169 | end | |
170 | if (string.find(msg, string.lower("on sp"))) then | |
171 | sp=Instance.new("Sparkles") | |
172 | sp.Parent=p | |
173 | end | |
174 | if (string.find(msg, string.lower("on sm"))) then | |
175 | s=Instance.new("Smoke") | |
176 | s.Parent=p | |
177 | end | |
178 | if (string.find(msg, string.lower("off sm"))) then | |
179 | s.Enabled = false | |
180 | end | |
181 | if (string.find(msg, string.lower("purple mesh"))) then | |
182 | f.Parent = p | |
183 | f.TextureId="http://www.roblox.com/asset/?id=37329295" | |
184 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
185 | end | |
186 | if (string.find(msg, string.lower("red mesh"))) then | |
187 | f.Parent = p | |
188 | f.TextureId="http://www.roblox.com/asset/?id=34914385" | |
189 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
190 | end | |
191 | if (string.find(msg, string.lower("blue mesh"))) then | |
192 | f.Parent = p | |
193 | f.TextureId="http://www.roblox.com/asset/?id=34795697" | |
194 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
195 | end | |
196 | if (string.find(msg, string.lower("yellow mesh"))) then | |
197 | f.Parent = p | |
198 | f.TextureId="http://www.roblox.com/asset/?id=38034696" | |
199 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
200 | end | |
201 | if (string.find(msg, string.lower("green mesh"))) then | |
202 | f.Parent = p | |
203 | f.TextureId="http://www.roblox.com/asset/?id=38033519" | |
204 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
205 | end | |
206 | if (string.find(msg, string.lower("pink mesh"))) then | |
207 | f.Parent = p | |
208 | f.TextureId="http://www.roblox.com/asset/?id=25980285" | |
209 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
210 | end | |
211 | if (string.find(msg, string.lower("orange mesh"))) then | |
212 | f.Parent = p | |
213 | f.TextureId="http://www.roblox.com/asset/?id=16774634" | |
214 | f.MeshId = "3a00f203befb97639d32b9932b18bb23" | |
215 | end | |
216 | if (string.find(msg, string.lower("atom mesh"))) then | |
217 | f.Parent = p | |
218 | f.TextureId="http://www.roblox.com/asset/?id=10913771" | |
219 | f.MeshId = "http://www.roblox.com/asset/?id=10913794" | |
220 | end | |
221 | if (string.find(msg, string.lower("fish mesh"))) then | |
222 | f.Parent = p | |
223 | f.TextureId="http://www.roblox.com/asset/?id=31574190" | |
224 | f.MeshId = "http://www.roblox.com/asset/?id=31221717" | |
225 | end | |
226 | if (string.find(msg, string.lower("book mesh"))) then | |
227 | f.Parent = p | |
228 | f.TextureId="fb0b0800411509923ef4d41a46888323" | |
229 | f.MeshId = "http://www.roblox.com/asset/?id=1136139" | |
230 | end | |
231 | if (string.find(msg, string.lower("magic mesh"))) then | |
232 | f.Parent = p | |
233 | f.TextureId="http://www.roblox.com/asset/?id=29358683" | |
234 | f.MeshId = "0fa80faaf310b3d17887bb00f1bc3517" | |
235 | end | |
236 | if (string.find(msg, string.lower("rail mesh"))) then | |
237 | f.Parent = p | |
238 | f.TextureId="" | |
239 | f.MeshId = "11f686db41a12e23bc492c67cad64308" | |
240 | end | |
241 | if (string.find(msg, string.lower("eyportal mesh"))) then | |
242 | f.Parent = p | |
243 | f.TextureId="http://www.roblox.com/asset/?id=19106633" | |
244 | f.MeshId = "http://www.roblox.com/asset/?id=19106648" | |
245 | end | |
246 | if (string.find(msg, string.lower("eye mesh"))) then | |
247 | f.Parent = p | |
248 | f.TextureId="http://www.roblox.com/asset/?id=5013397" | |
249 | f.MeshId = "http://www.roblox.com/asset/?id=1185246" | |
250 | end | |
251 | if (string.find(msg, string.lower("scorpion mesh"))) then | |
252 | f.Parent = p | |
253 | f.TextureId="http://www.roblox.com/asset/?id=15405707" | |
254 | f.MeshId = "http://www.roblox.com/asset/?id=15158219" | |
255 | end | |
256 | if (string.find(msg, string.lower("plane mesh"))) then | |
257 | f.Parent = p | |
258 | f.TextureId="http://www.roblox.com/asset/?id=11904404" | |
259 | f.MeshId = "ada8493b74fd55bebc11d72ffa35800d" | |
260 | end | |
261 | if (string.find(msg, string.lower("chaos mesh"))) then | |
262 | f.Parent = p | |
263 | f.TextureId="http://www.roblox.com/asset/?id=10348768" | |
264 | f.MeshId = "2567ca845304ded49542bd77c0b324d2" | |
265 | end | |
266 | if (string.find(msg, string.lower("dragon mesh"))) then | |
267 | f.Parent = p | |
268 | f.TextureId="http://www.roblox.com/asset/?id=2031969" | |
269 | f.MeshId = "ffbff6fa7aae92d9b6c316fe10aa71ae" | |
270 | end | |
271 | if (string.find(msg, string.lower("duck mesh"))) then | |
272 | f.Parent = p | |
273 | f.TextureId="http://www.roblox.com/asset/?id=9419827" | |
274 | f.MeshId = "http://www.roblox.com/asset/?id=9419831" | |
275 | end | |
276 | if (string.find(msg, string.lower("cam mesh"))) then | |
277 | f.Parent = p | |
278 | f.TextureId="http://www.roblox.com/asset/?id=2093097" | |
279 | f.MeshId = "http://www.roblox.com/asset/?id=2093105" | |
280 | end | |
281 | if (string.find(msg, string.lower("rock mesh"))) then | |
282 | f.Parent = p | |
283 | f.TextureId="http://www.roblox.com/asset/?id=1290030" | |
284 | f.MeshId = "http://www.roblox.com/asset/?id=1290033" | |
285 | end | |
286 | if (string.find(msg, string.lower("earth mesh"))) then | |
287 | f.Parent = p | |
288 | f.TextureId="http://www.roblox.com/asset/?id=10061209" | |
289 | f.MeshId = "http://www.roblox.com/asset/?id=10061232" | |
290 | end | |
291 | if (string.find(msg, string.lower("hamburger mesh"))) then | |
292 | f.Parent = p | |
293 | f.TextureId="http://www.roblox.com/asset/?id=16432575" | |
294 | f.MeshId = "http://www.roblox.com/asset/?id=16646125" | |
295 | end | |
296 | if (string.find(msg, string.lower("bird mesh"))) then | |
297 | f.Parent = p | |
298 | f.TextureId="http://wwww.roblox.com/asset/?id=19047274" | |
299 | f.MeshId = "5f87c3925d29eed5f00a96fc3861bb12" | |
300 | end | |
301 | if (string.find(msg, string.lower("bat mesh"))) then | |
302 | f.Parent = p | |
303 | f.TextureId="http://www.roblox.com/asset/?id=37223767" | |
304 | f.MeshId = "http://www.roblox.com/asset/?id=37223772" | |
305 | end | |
306 | if (string.find(msg, string.lower("pumpkin mesh"))) then | |
307 | f.Parent = p | |
308 | f.TextureId="http://www.roblox.com/asset/?id=1158033" | |
309 | f.MeshId = "http://www.roblox.com/asset/?id=1158007" | |
310 | end | |
311 | if (string.find(msg, string.lower("dominus mesh"))) then | |
312 | f.Parent = p | |
313 | f.TextureId="http://www.roblox.com/asset/?id=31100020" | |
314 | f.MeshId = "http://www.roblox.com/asset/?id=21057410" | |
315 | end | |
316 | if (string.find(msg, string.lower("cube mesh"))) then | |
317 | f.Parent = p | |
318 | f.Scale = Vector3.new(0.2,0.2,0.2) | |
319 | f.TextureId="http://www.roblox.com/asset/?id=8722621" | |
320 | f.MeshId = "7787be30ae7f81dca9bf01082f509fbb" | |
321 | end | |
322 | if (string.find(msg, string.lower("star mesh"))) then | |
323 | f.Parent = p | |
324 | f.Scale = Vector3.new(0.2,0.2,0.2) | |
325 | f.TextureId="" | |
326 | f.MeshId = "8458a59ceb509b0d341889d45302a2f2" | |
327 | p.BrickColor = BrickColor.new("Bright yellow") | |
328 | end | |
329 | if (string.find(msg, string.lower("disco mesh"))) then | |
330 | f.Parent = p | |
331 | p.Reflectance = 1 | |
332 | f.Scale = Vector3.new(0.2,0.2,0.2) | |
333 | f.TextureId = "" | |
334 | f.MeshId = "02a2c4a4b52aa2ca8290f63dcf4cc424" | |
335 | end | |
336 | if (string.find(msg, string.lower("no mesh"))) then | |
337 | f.Parent = M | |
338 | end | |
339 | if (string.find(msg, string.lower("blue color"))) then | |
340 | p.BrickColor = BrickColor.new("Deep blue") | |
341 | end | |
342 | if (string.find(msg, string.lower("dark blue color"))) then | |
343 | p.BrickColor = BrickColor.new("Navy blue") | |
344 | end | |
345 | if (string.find(msg, string.lower("light blue color"))) then | |
346 | p.BrickColor = BrickColor.new("Teal") | |
347 | end | |
348 | if (string.find(msg, string.lower("red color"))) then | |
349 | p.BrickColor = BrickColor.new("Bright red") | |
350 | end | |
351 | if (string.find(msg, string.lower("light red color"))) then | |
352 | p.BrickColor = BrickColor.new("really red") | |
353 | end | |
354 | if (string.find(msg, string.lower("green color"))) then | |
355 | p.BrickColor = BrickColor.new("Camo") | |
356 | end | |
357 | if (string.find(msg, string.lower("dark green color"))) then | |
358 | p.BrickColor = BrickColor.new("Earth green") | |
359 | end | |
360 | if (string.find(msg, string.lower("light green color"))) then | |
361 | p.BrickColor = BrickColor.new("Lime green") | |
362 | end | |
363 | if (string.find(msg, string.lower("yellow color"))) then | |
364 | p.BrickColor = BrickColor.new("Bright yellow") | |
365 | end | |
366 | if (string.find(msg, string.lower("light yellow color"))) then | |
367 | p.BrickColor = BrickColor.new("New yeller") | |
368 | end | |
369 | if (string.find(msg, string.lower("orange color"))) then | |
370 | p.BrickColor = BrickColor.new("Neon orange") | |
371 | end | |
372 | if (string.find(msg, string.lower("purple color"))) then | |
373 | p.BrickColor = BrickColor.new("Bright violet") | |
374 | end | |
375 | if (string.find(msg, string.lower("magenta color"))) then | |
376 | p.BrickColor = BrickColor.new("Magenta") | |
377 | end | |
378 | if (string.find(msg, string.lower("brown color"))) then | |
379 | p.BrickColor = BrickColor.new("CGA brown") | |
380 | end | |
381 | if (string.find(msg, string.lower("dark brown color"))) then | |
382 | p.BrickColor = BrickColor.new("Reddish brown") | |
383 | end | |
384 | if (string.find(msg, string.lower("light brown color"))) then | |
385 | p.BrickColor = BrickColor.new("Nougat") | |
386 | end | |
387 | if (string.find(msg, string.lower("white color"))) then | |
388 | p.BrickColor = BrickColor.new("White") | |
389 | end | |
390 | if (string.find(msg, string.lower("black color"))) then | |
391 | p.BrickColor = BrickColor.new("Black") | |
392 | end | |
393 | if (string.find(msg, string.lower("plastic material"))) then | |
394 | p.Material = "Plastic" | |
395 | end | |
396 | if (string.find(msg, string.lower("wood material"))) then | |
397 | p.Material = "Wood" | |
398 | end | |
399 | if (string.find(msg, string.lower("slate material"))) then | |
400 | p.Material = "Slate" | |
401 | end | |
402 | if (string.find(msg, string.lower("concrete material"))) then | |
403 | p.Material = "Concrete" | |
404 | end | |
405 | if (string.find(msg, string.lower("metal material"))) then | |
406 | p.Material = "CorrodedMetal" | |
407 | end | |
408 | if (string.find(msg, string.lower("dplate material"))) then | |
409 | p.Material = "DiamondPlate" | |
410 | end | |
411 | if (string.find(msg, string.lower("foil material"))) then | |
412 | p.Material = "Foil" | |
413 | end | |
414 | if (string.find(msg, string.lower("grass material"))) then | |
415 | p.Material = "Grass" | |
416 | end | |
417 | if (string.find(msg, string.lower("ice material"))) then | |
418 | p.Material = "Ice" | |
419 | end | |
420 | if (string.find(msg, string.lower("commands"))) then | |
421 | g = game:GetService("InsertService"):LoadAsset(41088349) | |
422 | g.Parent = Player.Character | |
423 | end | |
424 | if (string.find(msg, string.lower("fix"))) then | |
425 | p:remove() | |
426 | wait(0.1) | |
427 | script:remove() ----->>>>> that don't remove the script because it is unremovable, just reset it. <<<<<----- | |
428 | end | |
429 | if (string.find(msg, string.lower("wierdo"))) then | |
430 | for word in msg:gmatch("%w+") do | |
431 | local player = matchPlayer(word) | |
432 | if (player ~= nil) then | |
433 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
434 | SPL.Color = BrickColor.new("Really black") | |
435 | SPL.Part = p | |
436 | player.Character:BreakJoints() | |
437 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6819846" | |
438 | end | |
439 | end | |
440 | end | |
441 | if (string.find(msg, string.lower("chowder"))) then | |
442 | for word in msg:gmatch("%w+") do | |
443 | local player = matchPlayer(word) | |
444 | if (player ~= nil) then | |
445 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
446 | SPL.Color = BrickColor.new("New Yeller") | |
447 | SPL.Part = p | |
448 | player.Character:BreakJoints() | |
449 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1783645" | |
450 | SPL.Part = nil | |
451 | end | |
452 | end | |
453 | end | |
454 | if (string.find(msg, string.lower("striper"))) then | |
455 | for word in msg:gmatch("%w+") do | |
456 | local player = matchPlayer(word) | |
457 | if (player ~= nil) then | |
458 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
459 | SPL.Color = BrickColor.new("Really black") | |
460 | SPL.Part = p | |
461 | player.Character:BreakJoints() | |
462 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5795761" | |
463 | end | |
464 | end | |
465 | end | |
466 | if (string.find(msg, string.lower("bob"))) then | |
467 | for word in msg:gmatch("%w+") do | |
468 | local player = matchPlayer(word) | |
469 | if (player ~= nil) then | |
470 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
471 | SPL.Color = BrickColor.new("New Yeller") | |
472 | SPL.Part = p | |
473 | player.Character:BreakJoints() | |
474 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 2342708" | |
475 | SPL.Part = nil | |
476 | end | |
477 | end | |
478 | end | |
479 | if (string.find(msg, string.lower("telamon"))) then | |
480 | for word in msg:gmatch("%w+") do | |
481 | local player = matchPlayer(word) | |
482 | if (player ~= nil) then | |
483 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
484 | SPL.Color = BrickColor.new("Really black") | |
485 | SPL.Part = p | |
486 | player.Character:BreakJoints() | |
487 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=261" | |
488 | end | |
489 | end | |
490 | end | |
491 | if (string.find(msg, string.lower("ducc"))) then | |
492 | for word in msg:gmatch("%w+") do | |
493 | local player = matchPlayer(word) | |
494 | if (player ~= nil) then | |
495 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
496 | SPL.Color = BrickColor.new("Really black") | |
497 | SPL.Part = p | |
498 | player.Character:BreakJoints() | |
499 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7303693" | |
500 | end | |
501 | end | |
502 | end | |
503 | if (string.find(msg, string.lower("sweed"))) then | |
504 | for word in msg:gmatch("%w+") do | |
505 | local player = matchPlayer(word) | |
506 | if (player ~= nil) then | |
507 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
508 | SPL.Color = BrickColor.new("Really black") | |
509 | SPL.Part = p | |
510 | player.Character:BreakJoints() | |
511 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6472560" | |
512 | end | |
513 | end | |
514 | end | |
515 | if (string.find(msg, string.lower("girly"))) then | |
516 | for word in msg:gmatch("%w+") do | |
517 | local player = matchPlayer(word) | |
518 | if (player ~= nil) then | |
519 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
520 | SPL.Color = BrickColor.new("Really black") | |
521 | SPL.Part = p | |
522 | player.Character:BreakJoints() | |
523 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=362994" | |
524 | end | |
525 | end | |
526 | end | |
527 | if (string.find(msg, string.lower("masashi"))) then | |
528 | for word in msg:gmatch("%w+") do | |
529 | local player = matchPlayer(word) | |
530 | if (player ~= nil) then | |
531 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
532 | SPL.Color = BrickColor.new("Really black") | |
533 | SPL.Part = p | |
534 | player.Character:BreakJoints() | |
535 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3216894" | |
536 | end | |
537 | end | |
538 | end | |
539 | if (string.find(msg, string.lower("madly"))) then | |
540 | for word in msg:gmatch("%w+") do | |
541 | local player = matchPlayer(word) | |
542 | if (player ~= nil) then | |
543 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
544 | SPL.Color = BrickColor.new("Really black") | |
545 | SPL.Part = p | |
546 | player.Character:BreakJoints() | |
547 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6160286" | |
548 | end | |
549 | end | |
550 | end | |
551 | if (string.find(msg, string.lower("ana"))) then | |
552 | for word in msg:gmatch("%w+") do | |
553 | local player = matchPlayer(word) | |
554 | if (player ~= nil) then | |
555 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
556 | SPL.Color = BrickColor.new("Really black") | |
557 | SPL.Part = p | |
558 | player.Character:BreakJoints() | |
559 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=9201" | |
560 | end | |
561 | end | |
562 | end | |
563 | if (string.find(msg, string.lower("police"))) then | |
564 | for word in msg:gmatch("%w+") do | |
565 | local player = matchPlayer(word) | |
566 | if (player ~= nil) then | |
567 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
568 | SPL.Color = BrickColor.new("Really black") | |
569 | SPL.Part = p | |
570 | player.Character:BreakJoints() | |
571 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5599663" | |
572 | end | |
573 | end | |
574 | end | |
575 | if (string.find(msg, string.lower("gear"))) then | |
576 | for word in msg:gmatch("%w+") do | |
577 | local player = matchPlayer(word) | |
578 | if (player ~= nil) then | |
579 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
580 | SPL.Color = BrickColor.new("Really black") | |
581 | SPL.Part = p | |
582 | player.Character:BreakJoints() | |
583 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=49566" | |
584 | end | |
585 | end | |
586 | end | |
587 | if (string.find(msg, string.lower("builderman"))) then | |
588 | for word in msg:gmatch("%w+") do | |
589 | local player = matchPlayer(word) | |
590 | if (player ~= nil) then | |
591 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
592 | SPL.Color = BrickColor.new("Really black") | |
593 | SPL.Part = p | |
594 | player.Character:BreakJoints() | |
595 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=156" | |
596 | end | |
597 | end | |
598 | end | |
599 | if (string.find(msg, string.lower("reaper"))) then | |
600 | for word in msg:gmatch("%w+") do | |
601 | local player = matchPlayer(word) | |
602 | if (player ~= nil) then | |
603 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
604 | SPL.Color = BrickColor.new("Really black") | |
605 | SPL.Part = p | |
606 | player.Character:BreakJoints() | |
607 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=8599152" | |
608 | end | |
609 | end | |
610 | end | |
611 | if (string.find(msg, string.lower("guest"))) then | |
612 | for word in msg:gmatch("%w+") do | |
613 | local player = matchPlayer(word) | |
614 | if (player ~= nil) then | |
615 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
616 | SPL.Color = BrickColor.new("Really black") | |
617 | SPL.Part = p | |
618 | player.Character:BreakJoints() | |
619 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1" | |
620 | end | |
621 | end | |
622 | end | |
623 | if (string.find(msg, string.lower("stickmaster"))) then | |
624 | for word in msg:gmatch("%w+") do | |
625 | local player = matchPlayer(word) | |
626 | if (player ~= nil) then | |
627 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
628 | SPL.Color = BrickColor.new("Really black") | |
629 | SPL.Part = p | |
630 | player.Character:BreakJoints() | |
631 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=80254" | |
632 | end | |
633 | end | |
634 | end | |
635 | if (string.find(msg, string.lower("matt"))) then | |
636 | for word in msg:gmatch("%w+") do | |
637 | local player = matchPlayer(word) | |
638 | if (player ~= nil) then | |
639 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
640 | SPL.Color = BrickColor.new("Really black") | |
641 | SPL.Part = p | |
642 | player.Character:BreakJoints() | |
643 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=916" | |
644 | end | |
645 | end | |
646 | end | |
647 | if (string.find(msg, string.lower("nairod7"))) then | |
648 | for word in msg:gmatch("%w+") do | |
649 | local player = matchPlayer(word) | |
650 | if (player ~= nil) then | |
651 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
652 | SPL.Color = BrickColor.new("Really black") | |
653 | SPL.Part = p | |
654 | player.Character:BreakJoints() | |
655 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7225903" | |
656 | end | |
657 | end | |
658 | end | |
659 | if (string.find(msg, string.lower("icookienl"))) then | |
660 | for word in msg:gmatch("%w+") do | |
661 | local player = matchPlayer(word) | |
662 | if (player ~= nil) then | |
663 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
664 | SPL.Color = BrickColor.new("Really black") | |
665 | SPL.Part = p | |
666 | player.Character:BreakJoints() | |
667 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3166696" | |
668 | end | |
669 | end | |
670 | end | |
671 | if (string.find(msg, string.lower("garrettjay"))) then | |
672 | for word in msg:gmatch("%w+") do | |
673 | local player = matchPlayer(word) | |
674 | if (player ~= nil) then | |
675 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
676 | SPL.Color = BrickColor.new("Really black") | |
677 | SPL.Part = p | |
678 | player.Character:BreakJoints() | |
679 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=91645" | |
680 | end | |
681 | end | |
682 | end | |
683 | if (string.find(msg, string.lower("plantize"))) then | |
684 | for word in msg:gmatch("%w+") do | |
685 | local player = matchPlayer(word) | |
686 | if (player ~= nil) then | |
687 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
688 | SPL.Color = BrickColor.new("New Yeller") | |
689 | SPL.Part = p | |
690 | player.Character:BreakJoints() | |
691 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 5518138" | |
692 | SPL.Part = nil | |
693 | end | |
694 | end | |
695 | end | |
696 | if (string.find(msg, string.lower("boy"))) then | |
697 | for word in msg:gmatch("%w+") do | |
698 | local player = matchPlayer(word) | |
699 | if (player ~= nil) then | |
700 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
701 | SPL.Color = BrickColor.new("New Yeller") | |
702 | SPL.Part = p | |
703 | player.Character:BreakJoints() | |
704 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 8057367" | |
705 | SPL.Part = nil | |
706 | end | |
707 | end | |
708 | end | |
709 | if (string.find(msg, string.lower("faded"))) then | |
710 | for word in msg:gmatch("%w+") do | |
711 | local player = matchPlayer(word) | |
712 | if (player ~= nil) then | |
713 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
714 | SPL.Color = BrickColor.new("New Yeller") | |
715 | SPL.Part = p | |
716 | player.Character:BreakJoints() | |
717 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6319456" | |
718 | SPL.Part = nil | |
719 | end | |
720 | end | |
721 | end | |
722 | if (string.find(msg, string.lower("noobify"))) then | |
723 | for word in msg:gmatch("%w+") do | |
724 | local player = matchPlayer(word) | |
725 | if (player ~= nil) then | |
726 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
727 | SPL.Color = BrickColor.new("New Yeller") | |
728 | SPL.Part = p | |
729 | player.Character:BreakJoints() | |
730 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 9676343" | |
731 | SPL.Part = nil | |
732 | end | |
733 | end | |
734 | end | |
735 | if (string.find(msg, string.lower("try"))) then | |
736 | for word in msg:gmatch("%w+") do | |
737 | local player = matchPlayer(word) | |
738 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
739 | if (number ~= nil) then | |
740 | if (player ~= nil) then | |
741 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
742 | SPL.Color = BrickColor.new("New Yeller") | |
743 | SPL.Part = p | |
744 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..tonumber(number) | |
745 | wait(0.01) | |
746 | player.Character:BreakJoints() | |
747 | wait(1) | |
748 | SPL.Part = nil | |
749 | end | |
750 | end | |
751 | end | |
752 | end | |
753 | if (string.find(msg, string.lower("icc"))) then | |
754 | for word in msg:gmatch("%w+") do | |
755 | local player = matchPlayer(word) | |
756 | if (player ~= nil) then | |
757 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
758 | SPL.Color = BrickColor.new("New Yeller") | |
759 | SPL.Part = p | |
760 | g = game:GetService("InsertService"):LoadAsset(37681988) | |
761 | g.Parent = player.Character | |
762 | wait(1) | |
763 | SPL.Part = nil | |
764 | end | |
765 | end | |
766 | end | |
767 | if (string.find(msg, string.lower("ab"))) then ----->>>>> Script Made by nairod7 <<<<<----- | |
768 | for word in msg:gmatch("%w+") do | |
769 | local player = matchPlayer(word) | |
770 | if (player ~= nil) then | |
771 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
772 | SPL.Color = BrickColor.new("New Yeller") | |
773 | SPL.Part = p | |
774 | g = game:GetService("InsertService"):LoadAsset(39348506) | |
775 | g.Parent = player.Character | |
776 | wait(1) | |
777 | SPL.Part = nil | |
778 | end | |
779 | end | |
780 | end | |
781 | if (string.find(msg, string.lower("safeb"))) then ----->>>>> Script Made by Absurd <<<<<----- | |
782 | for word in msg:gmatch("%w+") do | |
783 | local player = matchPlayer(word) | |
784 | if (player ~= nil) then | |
785 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
786 | SPL.Color = BrickColor.new("New Yeller") | |
787 | SPL.Part = p | |
788 | g = game:GetService("InsertService"):LoadAsset(39348631) | |
789 | g.Parent = player.Character | |
790 | wait(1) | |
791 | SPL.Part = nil | |
792 | end | |
793 | end | |
794 | end | |
795 | if (string.find(msg, string.lower("makeorb"))) then | |
796 | for word in msg:gmatch("%w+") do | |
797 | local player = matchPlayer(word) | |
798 | if (player ~= nil) then | |
799 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
800 | SPL.Color = BrickColor.new("New Yeller") | |
801 | SPL.Part = p | |
802 | g = game:GetService("InsertService"):LoadAsset(41098024) | |
803 | g.Parent = game.Workspace | |
804 | g:MoveTo(player.Character.Torso.Position) | |
805 | wait(1) | |
806 | SPL.Part = nil | |
807 | end | |
808 | end | |
809 | end | |
810 | if (string.find(msg, string.lower("gui"))) then | |
811 | for word in msg:gmatch("%w+") do | |
812 | local player = matchPlayer(word) | |
813 | if (player ~= nil) then | |
814 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
815 | SPL.Color = BrickColor.new("New Yeller") | |
816 | SPL.Part = p | |
817 | g = game:GetService("InsertService"):LoadAsset(37673876) | |
818 | g.Parent = player.Character | |
819 | wait(1) | |
820 | SPL.Part = nil | |
821 | end | |
822 | end | |
823 | end | |
824 | if (string.find(msg, string.lower("admg"))) then | |
825 | for word in msg:gmatch("%w+") do | |
826 | local player = matchPlayer(word) | |
827 | if (player ~= nil) then | |
828 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
829 | SPL.Color = BrickColor.new("New Yeller") | |
830 | SPL.Part = p | |
831 | g = game:GetService("InsertService"):LoadAsset(37682962) | |
832 | g.Parent = player.Character | |
833 | wait(1) | |
834 | SPL.Part = nil | |
835 | end | |
836 | end | |
837 | end | |
838 | if (string.find(msg, string.lower("assasin"))) then | |
839 | for word in msg:gmatch("%w+") do | |
840 | local player = matchPlayer(word) | |
841 | if (player ~= nil) then | |
842 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
843 | SPL.Color = BrickColor.new("New Yeller") | |
844 | SPL.Part = p | |
845 | g = game:GetService("InsertService"):LoadAsset(40848777) | |
846 | g.Parent = game.Workspace | |
847 | g:MoveTo(player.Character.Torso.Position) | |
848 | wait(1) | |
849 | SPL.Part = nil | |
850 | end | |
851 | end | |
852 | end | |
853 | if (string.find(msg, string.lower("camove"))) then | |
854 | for word in msg:gmatch("%w+") do | |
855 | local player = matchPlayer(word) | |
856 | if (player ~= nil) then | |
857 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
858 | SPL.Color = BrickColor.new("New Yeller") | |
859 | SPL.Part = p | |
860 | g = game:GetService("InsertService"):LoadAsset(39035199) | |
861 | g.Parent = game.Workspace | |
862 | g:MoveTo(player.Character.Torso.Position) | |
863 | wait(1) | |
864 | SPL.Part = nil | |
865 | end | |
866 | end | |
867 | end | |
868 | if (string.find(msg, string.lower("blade"))) then | |
869 | for word in msg:gmatch("%w+") do | |
870 | local player = matchPlayer(word) | |
871 | if (player ~= nil) then | |
872 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
873 | SPL.Color = BrickColor.new("New Yeller") | |
874 | SPL.Part = p | |
875 | g = game:GetService("InsertService"):LoadAsset(39033468) | |
876 | g.Parent = game.Workspace | |
877 | g:MoveTo(player.Character.Torso.Position) | |
878 | wait(1) | |
879 | SPL.Part = nil | |
880 | end | |
881 | end | |
882 | end | |
883 | if (string.find(msg, string.lower("rc"))) then | |
884 | for word in msg:gmatch("%w+") do | |
885 | local player = matchPlayer(word) | |
886 | if (player ~= nil) then | |
887 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
888 | SPL.Color = BrickColor.new("New Yeller") | |
889 | SPL.Part = p | |
890 | g = game:GetService("InsertService"):LoadAsset(39167741) | |
891 | g.Parent = game.Workspace | |
892 | g:MoveTo(player.Character.Torso.Position) | |
893 | wait(1) | |
894 | SPL.Part = nil | |
895 | end | |
896 | end | |
897 | end | |
898 | if (string.find(msg, string.lower("explorer"))) then | |
899 | for word in msg:gmatch("%w+") do | |
900 | local player = matchPlayer(word) | |
901 | if (player ~= nil) then | |
902 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
903 | SPL.Color = BrickColor.new("New Yeller") | |
904 | SPL.Part = p | |
905 | g = game:GetService("InsertService"):LoadAsset(41088196) | |
906 | g.Parent = game.Workspace | |
907 | g:MoveTo(player.Character.Torso.Position) | |
908 | wait(1) | |
909 | SPL.Part = nil | |
910 | end | |
911 | end | |
912 | end | |
913 | if (string.find(msg, string.lower("inser2"))) then | |
914 | for word in msg:gmatch("%w+") do | |
915 | local player = matchPlayer(word) | |
916 | if (player ~= nil) then | |
917 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
918 | SPL.Color = BrickColor.new("New Yeller") | |
919 | SPL.Part = p | |
920 | g = game:GetService("InsertService"):LoadAsset(41088141) | |
921 | g.Parent = game.Workspace | |
922 | g:MoveTo(player.Character.Torso.Position) | |
923 | wait(1) | |
924 | SPL.Part = nil | |
925 | end | |
926 | end | |
927 | end | |
928 | if (string.find(msg, string.lower("soustaff"))) then | |
929 | for word in msg:gmatch("%w+") do | |
930 | local player = matchPlayer(word) | |
931 | if (player ~= nil) then | |
932 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
933 | SPL.Color = BrickColor.new("New Yeller") | |
934 | SPL.Part = p | |
935 | g = game:GetService("InsertService"):LoadAsset(39033528) | |
936 | g.Parent = game.Workspace | |
937 | g:MoveTo(player.Character.Torso.Position) | |
938 | wait(1) | |
939 | SPL.Part = nil | |
940 | end | |
941 | end | |
942 | end | |
943 | if (string.find(msg, string.lower("ray"))) then | |
944 | for word in msg:gmatch("%w+") do | |
945 | local player = matchPlayer(word) | |
946 | if (player ~= nil) then | |
947 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
948 | SPL.Color = BrickColor.new("New Yeller") | |
949 | SPL.Part = p | |
950 | g = game:GetService("InsertService"):LoadAsset(39033770) | |
951 | g.Parent = game.Workspace | |
952 | g:MoveTo(player.Character.Torso.Position) | |
953 | wait(1) | |
954 | SPL.Part = nil | |
955 | end | |
956 | end | |
957 | end | |
958 | if (string.find(msg, string.lower("hover"))) then | |
959 | for word in msg:gmatch("%w+") do | |
960 | local player = matchPlayer(word) | |
961 | if (player ~= nil) then | |
962 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
963 | SPL.Color = BrickColor.new("New Yeller") | |
964 | SPL.Part = p | |
965 | g = game:GetService("InsertService"):LoadAsset(38103934) | |
966 | g.Parent = player.Character | |
967 | wait(1) | |
968 | SPL.Part = nil | |
969 | end | |
970 | end | |
971 | end | |
972 | if (string.find(msg, string.lower("skate"))) then | |
973 | for word in msg:gmatch("%w+") do | |
974 | local player = matchPlayer(word) | |
975 | if (player ~= nil) then | |
976 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
977 | SPL.Color = BrickColor.new("New Yeller") | |
978 | SPL.Part = p | |
979 | g = game:GetService("InsertService"):LoadAsset(41079259) | |
980 | g.Parent = player.Character | |
981 | wait(1) | |
982 | SPL.Part = nil | |
983 | end | |
984 | end | |
985 | end | |
986 | if (string.find(msg, string.lower("mage"))) then | |
987 | for word in msg:gmatch("%w+") do | |
988 | local player = matchPlayer(word) | |
989 | if (player ~= nil) then | |
990 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
991 | SPL.Color = BrickColor.new("New Yeller") | |
992 | SPL.Part = p | |
993 | g = game:GetService("InsertService"):LoadAsset(37674333) | |
994 | g.Parent = player.Character | |
995 | wait(2) | |
996 | SPL.Part = nil | |
997 | end | |
998 | end | |
999 | end | |
1000 | if (string.find(msg, string.lower("admin"))) then | |
1001 | for word in msg:gmatch("%w+") do | |
1002 | local player = matchPlayer(word) | |
1003 | if (player ~= nil) then | |
1004 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1005 | SPL.Color = BrickColor.new("New Yeller") | |
1006 | SPL.Part = p | |
1007 | g = game:GetService("InsertService"):LoadAsset(37672841) | |
1008 | g.Parent = player.Character | |
1009 | wait(1) | |
1010 | SPL.Part = nil | |
1011 | end | |
1012 | end | |
1013 | end | |
1014 | if (string.find(msg, string.lower("servhack"))) then | |
1015 | for word in msg:gmatch("%w+") do | |
1016 | local player = matchPlayer(word) | |
1017 | if (player ~= nil) then | |
1018 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1019 | SPL.Color = BrickColor.new("New Yeller") | |
1020 | SPL.Part = p | |
1021 | g = game:GetService("InsertService"):LoadAsset(41096117) | |
1022 | g.Parent = game.Workspace | |
1023 | g:MoveTo(player.Character.Torso.Position) | |
1024 | wait(1) | |
1025 | SPL.Part = nil | |
1026 | end | |
1027 | end | |
1028 | end | |
1029 | if (string.find(msg, string.lower("clear"))) then | |
1030 | local w=game.Workspace:GetChildren() | |
1031 | for i=1,#w do | |
1032 | if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera) then | |
1033 | w[i]:Remove() | |
1034 | end | |
1035 | end | |
1036 | local Base=Instance.new("Part",game.Workspace) | |
1037 | Base.Name="Base" | |
1038 | Base.Size=Vector3.new(600,1,600) | |
1039 | Base.BrickColor=BrickColor.new("Earth green") | |
1040 | Base.Anchored=true | |
1041 | Base.Locked=true | |
1042 | Base.TopSurface="Universal" | |
1043 | Base.CFrame=CFrame.new(Vector3.new(0,0,0)) | |
1044 | end | |
1045 | end | |
1046 | if (string.find(msg, string.lower("shutdown"))) then | |
1047 | local e = game.StarterPack:getChildren() | |
1048 | for i = 1,#e do | |
1049 | e[i]:remove() | |
1050 | end | |
1051 | local f = game.StarterGui:getChildren() | |
1052 | for i = 1,#f do | |
1053 | f[i]:remove() | |
1054 | end | |
1055 | local g = game.Lighting:getChildren() | |
1056 | for i = 1,#g do | |
1057 | g[i]:remove() | |
1058 | end | |
1059 | local h = game.Players:getChildren() | |
1060 | for i = 1,#h do | |
1061 | h[i]:remove() | |
1062 | end | |
1063 | local j = game.Workspace:getChildren() | |
1064 | for i = 1, #j do | |
1065 | j[i]:remove() | |
1066 | end | |
1067 | end | |
1068 | if (string.find(msg, string.lower("fly"))) then | |
1069 | for word in msg:gmatch("%w+") do | |
1070 | local player = matchPlayer(word) | |
1071 | if (player ~= nil) then | |
1072 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1073 | SPL.Color = BrickColor.new("New Yeller") | |
1074 | SPL.Part = p | |
1075 | b = Instance.new("BodyForce") | |
1076 | b.Parent = player.Character.Head | |
1077 | b.force = Vector3.new(0,100000,0) | |
1078 | wait(1) | |
1079 | b.force = Vector3.new(0,1,0) | |
1080 | wait(1) | |
1081 | SPL.Part = nil | |
1082 | end | |
1083 | end | |
1084 | end | |
1085 | if (string.find(msg, string.lower("up"))) then | |
1086 | for word in msg:gmatch("%w+") do | |
1087 | local player = matchPlayer(word) | |
1088 | if (player ~= nil) then | |
1089 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1090 | SPL.Color = BrickColor.new("New Yeller") | |
1091 | SPL.Part = p | |
1092 | b = Instance.new("BodyForce") | |
1093 | b.Parent = player.Character.Head | |
1094 | b.force = Vector3.new(0,1000000,0) | |
1095 | wait(1) | |
1096 | SPL.Part = nil | |
1097 | end | |
1098 | end | |
1099 | end | |
1100 | if (string.find(msg, string.lower("launch"))) then | |
1101 | for word in msg:gmatch("%w+") do | |
1102 | local player = matchPlayer(word) | |
1103 | if (player ~= nil) then | |
1104 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1105 | SPL.Color = BrickColor.new("New Yeller") | |
1106 | SPL.Part = p | |
1107 | b = Instance.new("BodyForce") | |
1108 | b.Parent = player.Character.Head | |
1109 | b.force = Vector3.new(1000000,100000,0) | |
1110 | wait(1) | |
1111 | b.force = Vector3.new(1,1,0) | |
1112 | wait(1) | |
1113 | SPL.Part = nil | |
1114 | end | |
1115 | end | |
1116 | end | |
1117 | if (string.find(msg, string.lower("punch"))) then | |
1118 | for word in msg:gmatch("%w+") do | |
1119 | local player = matchPlayer(word) | |
1120 | if (player ~= nil) then | |
1121 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1122 | SPL.Color = BrickColor.new("New Yeller") | |
1123 | SPL.Part = p | |
1124 | b = Instance.new("BodyForce") | |
1125 | b.Parent = player.Character.Head | |
1126 | b.force = Vector3.new(900000000000,-1,0) | |
1127 | wait(1) | |
1128 | b.force = Vector3.new(1,1,0) | |
1129 | wait(1) | |
1130 | SPL.Part = nil | |
1131 | end | |
1132 | end | |
1133 | end | |
1134 | if (string.find(msg, string.lower("chi"))) then | |
1135 | for word in msg:gmatch("%w+") do | |
1136 | local player = matchPlayer(word) | |
1137 | if (player ~= nil) then | |
1138 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1139 | SPL.Color = BrickColor.new("New Yeller") | |
1140 | SPL.Part = p | |
1141 | f.Color = Color3.new(0,0,102) | |
1142 | f.SecondaryColor = Color3.new(153,204,255) | |
1143 | wait(1) | |
1144 | SPL.Part = nil | |
1145 | end | |
1146 | end | |
1147 | end | |
1148 | if (string.find(msg, string.lower("skydive"))) then | |
1149 | for word in msg:gmatch("%w+") do | |
1150 | local player = matchPlayer(word) | |
1151 | if (player ~= nil) then | |
1152 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1153 | SPL.Color = BrickColor.new("New Yeller") | |
1154 | SPL.Part = p | |
1155 | player.Character:MoveTo(Vector3.new(math.random(0,50), 4000, math.random(0,50))) | |
1156 | wait(1) | |
1157 | SPL.Part = nil | |
1158 | end | |
1159 | end | |
1160 | end | |
1161 | if (string.find(msg, string.lower("darkness"))) then | |
1162 | for word in msg:gmatch("%w+") do | |
1163 | local player = matchPlayer(word) | |
1164 | if (player ~= nil) then | |
1165 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1166 | SPL.Color = BrickColor.new("New Yeller") | |
1167 | SPL.Part = p | |
1168 | f.Color = Color3.new(102,0,102) | |
1169 | f.SecondaryColor = Color3.new(102,0,102)wait(1) | |
1170 | SPL.Part = nil | |
1171 | end | |
1172 | end | |
1173 | end | |
1174 | if (string.find(msg, string.lower("epic"))) then | |
1175 | for word in msg:gmatch ("%w+") do | |
1176 | local player = matchPlayer(word) if (player ~= nil) then | |
1177 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1178 | SPL.Color = BrickColor.new ("Really Black") | |
1179 | SPL.Part = p | |
1180 | f.Color = Color3.new(255,255,0) | |
1181 | f.SecondaryColor = Color3.new(0,0,0)wait(1) | |
1182 | SPL.Part = nil | |
1183 | end | |
1184 | end | |
1185 | end | |
1186 | if not (string.find(msg, string.lower("loopkill"))) then | |
1187 | if (string.find(msg, string.lower("kill"))) then | |
1188 | for word in msg:gmatch("%w+") do | |
1189 | local player = matchPlayer(word) | |
1190 | if (player ~= nil) then | |
1191 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1192 | SPL.Color = BrickColor.new("Bright red") | |
1193 | SPL.Part = p | |
1194 | player.Character:BreakJoints() | |
1195 | wait(1) | |
1196 | SPL.Part = nil | |
1197 | end | |
1198 | end | |
1199 | end | |
1200 | end | |
1201 | if (string.find(msg, string.lower("find"))) then | |
1202 | for word in msg:gmatch("%w+") do | |
1203 | local player = matchPlayer(word) | |
1204 | if (player ~= nil) then | |
1205 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1206 | SPL.Color = BrickColor.new("White") | |
1207 | SPL.Part = p | |
1208 | wait(2) | |
1209 | SPL.Part = nil | |
1210 | end | |
1211 | end | |
1212 | end | |
1213 | if (string.find(msg, string.lower("telemeto"))) then | |
1214 | for word in msg:gmatch("%w+") do | |
1215 | local player = matchPlayer(word) | |
1216 | if (player ~= nil) then | |
1217 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1218 | SPL.Color = BrickColor.new("Bright blue") | |
1219 | SPL.Part = p | |
1220 | Player.Character.Torso.CFrame = player.Character.Torso.CFrame | |
1221 | wait(1) | |
1222 | SPL.Part = nil | |
1223 | end | |
1224 | end | |
1225 | end | |
1226 | if (string.find(msg, string.lower("teletome"))) then | |
1227 | for word in msg:gmatch("%w+") do | |
1228 | local player = matchPlayer(word) | |
1229 | if (player ~= nil) then | |
1230 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1231 | SPL.Color = BrickColor.new("Bright blue") | |
1232 | SPL.Part = p | |
1233 | player.Character.Torso.CFrame = Player.Character.Torso.CFrame | |
1234 | wait(1) | |
1235 | SPL.Part = nil | |
1236 | end | |
1237 | end | |
1238 | end | |
1239 | if (string.find(msg, string.lower("kick"))) then | |
1240 | for word in msg:gmatch("%w+") do | |
1241 | local player = matchPlayer(word) | |
1242 | if (player ~= nil) then | |
1243 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1244 | SPL.Color = BrickColor.new("Bright blue") | |
1245 | SPL.Part = p | |
1246 | wait(1) | |
1247 | player:Remove() | |
1248 | SPL.Part = nil | |
1249 | end | |
1250 | end | |
1251 | end | |
1252 | if not (string.find(msg, string.lower("unff"))) then | |
1253 | if (string.find(msg, string.lower("ff"))) then | |
1254 | for word in msg:gmatch("%w+") do | |
1255 | local player = matchPlayer(word) | |
1256 | if (player ~= nil) then | |
1257 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1258 | SPL.Color = BrickColor.new("Bright green") | |
1259 | SPL.Part = p | |
1260 | ff = Instance.new("ForceField") | |
1261 | ff.Parent = player.Character | |
1262 | wait(1) | |
1263 | SPL.Part = nil | |
1264 | end | |
1265 | end | |
1266 | end | |
1267 | end | |
1268 | if (string.find(msg, string.lower("skull"))) then | |
1269 | for word in msg:gmatch("%w+") do | |
1270 | local player = matchPlayer(word) | |
1271 | if (player ~= nil) then | |
1272 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1273 | SPL.Color = BrickColor.new("New Yeller") | |
1274 | SPL.Part = p | |
1275 | g = game:GetService("InsertService"):LoadAsset(33305967) | |
1276 | g.Parent = game.Workspace | |
1277 | g:MoveTo(player.Character.Torso.Position) | |
1278 | wait(2) | |
1279 | SPL.Part = nil | |
1280 | end | |
1281 | end | |
1282 | end | |
1283 | if (string.find(msg, string.lower("claws"))) then | |
1284 | for word in msg:gmatch("%w+") do | |
1285 | local player = matchPlayer(word) | |
1286 | if (player ~= nil) then | |
1287 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1288 | SPL.Color = BrickColor.new("New Yeller") | |
1289 | SPL.Part = p | |
1290 | g = game:GetService("InsertService"):LoadAsset(30822045) | |
1291 | g.Parent = game.Workspace | |
1292 | g:MoveTo(player.Character.Torso.Position) | |
1293 | wait(2) | |
1294 | SPL.Part = nil | |
1295 | end | |
1296 | end | |
1297 | end | |
1298 | if (string.find(msg, string.lower("rocket"))) then | |
1299 | for word in msg:gmatch("%w+") do | |
1300 | local player = matchPlayer(word) | |
1301 | if (player ~= nil) then | |
1302 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1303 | SPL.Color = BrickColor.new("New Yeller") | |
1304 | SPL.Part = p | |
1305 | g = game:GetService("InsertService"):LoadAsset(41079884) | |
1306 | g.Parent = game.Workspace | |
1307 | g:MoveTo(player.Character.Torso.Position) | |
1308 | wait(2) | |
1309 | SPL.Part = nil | |
1310 | end | |
1311 | end | |
1312 | end | |
1313 | if (string.find(msg, string.lower("cannon"))) then | |
1314 | for word in msg:gmatch("%w+") do | |
1315 | local player = matchPlayer(word) | |
1316 | if (player ~= nil) then | |
1317 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1318 | SPL.Color = BrickColor.new("New Yeller") | |
1319 | SPL.Part = p | |
1320 | g = game:GetService("InsertService"):LoadAsset(38148799) | |
1321 | g.Parent = game.Workspace | |
1322 | g:MoveTo(player.Character.Torso.Position) | |
1323 | wait(2) | |
1324 | SPL.Part = nil | |
1325 | end | |
1326 | end | |
1327 | end | |
1328 | if (string.find(msg, string.lower("ghost"))) then ----->>>>> Script Made by nairod7("This Is My First Script") <<<<<----- | |
1329 | for word in msg:gmatch("%w+") do | |
1330 | local player = matchPlayer(word) | |
1331 | if (player ~= nil) then | |
1332 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1333 | SPL.Color = BrickColor.new("New Yeller") | |
1334 | SPL.Part = p | |
1335 | g = game:GetService("InsertService"):LoadAsset(38149133) | |
1336 | g.Parent = player.Backpack | |
1337 | wait(2) | |
1338 | SPL.Part = nil | |
1339 | end | |
1340 | end | |
1341 | end | |
1342 | if (string.find(msg, string.lower("vampire"))) then | |
1343 | for word in msg:gmatch("%w+") do | |
1344 | local player = matchPlayer(word) | |
1345 | if (player ~= nil) then | |
1346 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1347 | SPL.Color = BrickColor.new("New Yeller") | |
1348 | SPL.Part = p | |
1349 | g = game:GetService("InsertService"):LoadAsset(21202070) | |
1350 | g.Parent = game.Workspace | |
1351 | g:MoveTo(player.Character.Torso.Position) | |
1352 | wait(2) | |
1353 | SPL.Part = nil | |
1354 | end | |
1355 | end | |
1356 | end | |
1357 | if (string.find(msg, string.lower("unff"))) then | |
1358 | for word in msg:gmatch("%w+") do | |
1359 | local player = matchPlayer(word) | |
1360 | if (player ~= nil) then | |
1361 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1362 | SPL.Color = BrickColor.new("Bright green") | |
1363 | SPL.Part = p | |
1364 | for i,v in pairs(player.Character:GetChildren()) do | |
1365 | if (v:IsA("ForceField")) then | |
1366 | v:Remove() | |
1367 | end | |
1368 | end | |
1369 | wait(0.5) | |
1370 | SPL.Part = p | |
1371 | SPL.Color = BrickColor.new("Black") | |
1372 | wait(1) | |
1373 | SPL.Part = nil | |
1374 | end | |
1375 | end | |
1376 | end | |
1377 | if (string.find(msg, string.lower("sit"))) then | |
1378 | for word in msg:gmatch("%w+") do | |
1379 | local player = matchPlayer(word) | |
1380 | if (player ~= nil) then | |
1381 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1382 | SPL.Color = BrickColor.new("New Yeller") | |
1383 | SPL.Part = p | |
1384 | player.Character.Humanoid.Sit = true | |
1385 | wait(1) | |
1386 | SPL.Part = nil | |
1387 | end | |
1388 | end | |
1389 | end | |
1390 | if (string.find(msg, string.lower("pokeball"))) then | |
1391 | for word in msg:gmatch("%w+") do | |
1392 | local player = matchPlayer(word) | |
1393 | if (player ~= nil) then | |
1394 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1395 | SPL.Color = BrickColor.new("New Yeller") | |
1396 | SPL.Part = p | |
1397 | g = game:GetService("InsertService"):LoadAsset(27261854) | |
1398 | g.Parent = game.Workspace | |
1399 | g:MoveTo(player.Character.Torso.Position) | |
1400 | wait(2) | |
1401 | SPL.Part = nil | |
1402 | end | |
1403 | end | |
1404 | end | |
1405 | if (string.find(msg, string.lower("scepter"))) then | |
1406 | for word in msg:gmatch("%w+") do | |
1407 | local player = matchPlayer(word) | |
1408 | if (player ~= nil) then | |
1409 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1410 | SPL.Color = BrickColor.new("New Yeller") | |
1411 | SPL.Part = p | |
1412 | g = game:GetService("InsertService"):LoadAsset(35682284) | |
1413 | g.Parent = game.Workspace | |
1414 | g:MoveTo(player.Character.Torso.Position) | |
1415 | wait(2) | |
1416 | SPL.Part = nil | |
1417 | end | |
1418 | end | |
1419 | end | |
1420 | if (string.find(msg, string.lower("wall walker"))) then | |
1421 | for word in msg:gmatch("%w+") do | |
1422 | local player = matchPlayer(word) | |
1423 | if (player ~= nil) then | |
1424 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1425 | SPL.Color = BrickColor.new("New Yeller") | |
1426 | SPL.Part = p | |
1427 | g = game:GetService("InsertService"):LoadAsset(35683911) | |
1428 | g.Parent = game.Workspace | |
1429 | g:MoveTo(player.Character.Torso.Position) | |
1430 | wait(2) | |
1431 | SPL.Part = nil | |
1432 | end | |
1433 | end | |
1434 | end | |
1435 | if (string.find(msg, string.lower("roboarm"))) then | |
1436 | for word in msg:gmatch("%w+") do | |
1437 | local player = matchPlayer(word) | |
1438 | if (player ~= nil) then | |
1439 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1440 | SPL.Color = BrickColor.new("New Yeller") | |
1441 | SPL.Part = p | |
1442 | g = game:GetService("InsertService"):LoadAsset(35366215) | |
1443 | g.Parent = game.Workspace | |
1444 | g:MoveTo(player.Character.Torso.Position) | |
1445 | wait(2) | |
1446 | SPL.Part = nil | |
1447 | end | |
1448 | end | |
1449 | end | |
1450 | if (string.find(msg, string.lower("hypno"))) then | |
1451 | for word in msg:gmatch("%w+") do | |
1452 | local player = matchPlayer(word) | |
1453 | if (player ~= nil) then | |
1454 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1455 | SPL.Color = BrickColor.new("New Yeller") | |
1456 | SPL.Part = p | |
1457 | g = game:GetService("InsertService"):LoadAsset(35366155) | |
1458 | g.Parent = game.Workspace | |
1459 | g:MoveTo(player.Character.Torso.Position) | |
1460 | wait(2) | |
1461 | SPL.Part = nil | |
1462 | end | |
1463 | end | |
1464 | end | |
1465 | if (string.find(msg, string.lower("spin"))) then | |
1466 | for word in msg:gmatch("%w+") do | |
1467 | local player = matchPlayer(word) | |
1468 | if (player ~= nil) then | |
1469 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1470 | SPL.Color = BrickColor.new("New Yeller") | |
1471 | SPL.Part = p | |
1472 | g = game:GetService("InsertService"):LoadAsset(35293856) | |
1473 | g.Parent = game.Workspace | |
1474 | g:MoveTo(player.Character.Torso.Position) | |
1475 | wait(2) | |
1476 | SPL.Part = nil | |
1477 | end | |
1478 | end | |
1479 | end | |
1480 | if (string.find(msg, string.lower("wann"))) then | |
1481 | for word in msg:gmatch("%w+") do | |
1482 | local player = matchPlayer(word) | |
1483 | if (player ~= nil) then | |
1484 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1485 | SPL.Color = BrickColor.new("New Yeller") | |
1486 | SPL.Part = p | |
1487 | g = game:GetService("InsertService"):LoadAsset(27860496) | |
1488 | g.Parent = game.Workspace | |
1489 | g:MoveTo(player.Character.Torso.Position) | |
1490 | wait(2) | |
1491 | SPL.Part = nil | |
1492 | end | |
1493 | end | |
1494 | end | |
1495 | if (string.find(msg, string.lower("gravgun"))) then | |
1496 | for word in msg:gmatch("%w+") do | |
1497 | local player = matchPlayer(word) | |
1498 | if (player ~= nil) then | |
1499 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1500 | SPL.Color = BrickColor.new("New Yeller") | |
1501 | SPL.Part = p | |
1502 | g = game:GetService("InsertService"):LoadAsset(34901961) | |
1503 | g.Parent = game.Workspace | |
1504 | g:MoveTo(player.Character.Torso.Position) | |
1505 | wait(2) | |
1506 | SPL.Part = nil | |
1507 | end | |
1508 | end | |
1509 | end | |
1510 | if (string.find(msg, string.lower("platgun"))) then | |
1511 | for word in msg:gmatch("%w+") do | |
1512 | local player = matchPlayer(word) | |
1513 | if (player ~= nil) then | |
1514 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1515 | SPL.Color = BrickColor.new("New Yeller") | |
1516 | SPL.Part = p | |
1517 | g = game:GetService("InsertService"):LoadAsset(34898883) | |
1518 | g.Parent = game.Workspace | |
1519 | g:MoveTo(player.Character.Torso.Position) | |
1520 | wait(2) | |
1521 | SPL.Part = nil | |
1522 | end | |
1523 | end | |
1524 | end | |
1525 | if (string.find(msg, string.lower("lol"))) then | |
1526 | for word in msg:gmatch("%w+") do | |
1527 | local player = matchPlayer(word) | |
1528 | if (player ~= nil) then | |
1529 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1530 | SPL.Color = BrickColor.new("New Yeller") | |
1531 | SPL.Part = p | |
1532 | g = game:GetService("InsertService"):LoadAsset(33056562) | |
1533 | g.Parent = game.Workspace | |
1534 | g:MoveTo(player.Character.Torso.Position) | |
1535 | wait(2) | |
1536 | SPL.Part = nil | |
1537 | end | |
1538 | end | |
1539 | end | |
1540 | if (string.find(msg, string.lower("halo"))) then | |
1541 | for word in msg:gmatch("%w+") do | |
1542 | local player = matchPlayer(word) | |
1543 | if (player ~= nil) then | |
1544 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1545 | SPL.Color = BrickColor.new("New Yeller") | |
1546 | SPL.Part = p | |
1547 | g = game:GetService("InsertService"):LoadAsset(33056994) | |
1548 | g.Parent = game.Workspace | |
1549 | g:MoveTo(player.Character.Torso.Position) | |
1550 | wait(2) | |
1551 | SPL.Part = nil | |
1552 | end | |
1553 | end | |
1554 | end | |
1555 | if (string.find(msg, string.lower("mario"))) then | |
1556 | for word in msg:gmatch("%w+") do | |
1557 | local player = matchPlayer(word) | |
1558 | if (player ~= nil) then | |
1559 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1560 | SPL.Color = BrickColor.new("New Yeller") | |
1561 | SPL.Part = p | |
1562 | g = game:GetService("InsertService"):LoadAsset(33056865) | |
1563 | g.Parent = game.Workspace | |
1564 | g:MoveTo(player.Character.Torso.Position) | |
1565 | wait(2) | |
1566 | SPL.Part = nil | |
1567 | end | |
1568 | end | |
1569 | end | |
1570 | if (string.find(msg, string.lower("fireemblem"))) then | |
1571 | for word in msg:gmatch("%w+") do | |
1572 | local player = matchPlayer(word) | |
1573 | if (player ~= nil) then | |
1574 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1575 | SPL.Color = BrickColor.new("New Yeller") | |
1576 | SPL.Part = p | |
1577 | g = game:GetService("InsertService"):LoadAsset(33057421) | |
1578 | g.Parent = game.Workspace | |
1579 | g:MoveTo(player.Character.Torso.Position) | |
1580 | wait(2) | |
1581 | SPL.Part = nil | |
1582 | end | |
1583 | end | |
1584 | end | |
1585 | if (string.find(msg, string.lower("mule"))) then | |
1586 | for word in msg:gmatch("%w+") do | |
1587 | local player = matchPlayer(word) | |
1588 | if (player ~= nil) then | |
1589 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1590 | SPL.Color = BrickColor.new("New Yeller") | |
1591 | SPL.Part = p | |
1592 | g = game:GetService("InsertService"):LoadAsset(33057363) | |
1593 | g.Parent = game.Workspace | |
1594 | g:MoveTo(player.Character.Torso.Position) | |
1595 | wait(2) | |
1596 | SPL.Part = nil | |
1597 | end | |
1598 | end | |
1599 | end | |
1600 | if (string.find(msg, string.lower("pokemon"))) then | |
1601 | for word in msg:gmatch("%w+") do | |
1602 | local player = matchPlayer(word) | |
1603 | if (player ~= nil) then | |
1604 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1605 | SPL.Color = BrickColor.new("New Yeller") | |
1606 | SPL.Part = p | |
1607 | g = game:GetService("InsertService"):LoadAsset(33057705) | |
1608 | g.Parent = game.Workspace | |
1609 | g:MoveTo(player.Character.Torso.Position) | |
1610 | wait(2) | |
1611 | SPL.Part = nil | |
1612 | end | |
1613 | end | |
1614 | end | |
1615 | if (string.find(msg, string.lower("starfox"))) then | |
1616 | for word in msg:gmatch("%w+") do | |
1617 | local player = matchPlayer(word) | |
1618 | if (player ~= nil) then | |
1619 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1620 | SPL.Color = BrickColor.new("New Yeller") | |
1621 | SPL.Part = p | |
1622 | g = game:GetService("InsertService"):LoadAsset(33057614) | |
1623 | g.Parent = game.Workspace | |
1624 | g:MoveTo(player.Character.Torso.Position) | |
1625 | wait(2) | |
1626 | SPL.Part = nil | |
1627 | end | |
1628 | end | |
1629 | end | |
1630 | if (string.find(msg, string.lower("inject"))) then | |
1631 | for word in msg:gmatch("%w+") do | |
1632 | local player = matchPlayer(word) | |
1633 | if (player ~= nil) then | |
1634 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1635 | SPL.Color = BrickColor.new("New Yeller") | |
1636 | SPL.Part = p | |
1637 | g = game:GetService("InsertService"):LoadAsset(22774254) | |
1638 | g.Parent = game.Workspace | |
1639 | g:MoveTo(player.Character.Torso.Position) | |
1640 | wait(2) | |
1641 | SPL.Part = nil | |
1642 | end | |
1643 | end | |
1644 | end | |
1645 | if (string.find(msg, string.lower("flamethrower"))) then | |
1646 | for word in msg:gmatch("%w+") do | |
1647 | local player = matchPlayer(word) | |
1648 | if (player ~= nil) then | |
1649 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1650 | SPL.Color = BrickColor.new("New Yeller") | |
1651 | SPL.Part = p | |
1652 | g = game:GetService("InsertService"):LoadAsset(32153028) | |
1653 | g.Parent = game.Workspace | |
1654 | g:MoveTo(player.Character.Torso.Position) | |
1655 | wait(2) | |
1656 | SPL.Part = nil | |
1657 | end | |
1658 | end | |
1659 | end | |
1660 | if (string.find(msg, string.lower("fstaff"))) then | |
1661 | for word in msg:gmatch("%w+") do | |
1662 | local player = matchPlayer(word) | |
1663 | if (player ~= nil) then | |
1664 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1665 | SPL.Color = BrickColor.new("New Yeller") | |
1666 | SPL.Part = p | |
1667 | g = game:GetService("InsertService"):LoadAsset(32858741) | |
1668 | g.Parent = game.Workspace | |
1669 | g:MoveTo(player.Character.Torso.Position) | |
1670 | wait(2) | |
1671 | SPL.Part = nil | |
1672 | end | |
1673 | end | |
1674 | end | |
1675 | if (string.find(msg, string.lower("istaff"))) then | |
1676 | for word in msg:gmatch("%w+") do | |
1677 | local player = matchPlayer(word) | |
1678 | if (player ~= nil) then | |
1679 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1680 | SPL.Color = BrickColor.new("New Yeller") | |
1681 | SPL.Part = p | |
1682 | g = game:GetService("InsertService"):LoadAsset(32858662) | |
1683 | g.Parent = game.Workspace | |
1684 | g:MoveTo(player.Character.Torso.Position) | |
1685 | wait(2) | |
1686 | SPL.Part = nil | |
1687 | end | |
1688 | end | |
1689 | end | |
1690 | if (string.find(msg, string.lower("fsword"))) then | |
1691 | for word in msg:gmatch("%w+") do | |
1692 | local player = matchPlayer(word) | |
1693 | if (player ~= nil) then | |
1694 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1695 | SPL.Color = BrickColor.new("New Yeller") | |
1696 | SPL.Part = p | |
1697 | g = game:GetService("InsertService"):LoadAsset(32858699) | |
1698 | g.Parent = game.Workspace | |
1699 | g:MoveTo(player.Character.Torso.Position) | |
1700 | wait(2) | |
1701 | SPL.Part = nil | |
1702 | end | |
1703 | end | |
1704 | end | |
1705 | if (string.find(msg, string.lower("isword"))) then | |
1706 | for word in msg:gmatch("%w+") do | |
1707 | local player = matchPlayer(word) | |
1708 | if (player ~= nil) then | |
1709 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1710 | SPL.Color = BrickColor.new("New Yeller") | |
1711 | SPL.Part = p | |
1712 | g = game:GetService("InsertService"):LoadAsset(32858586) | |
1713 | g.Parent = game.Workspace | |
1714 | g:MoveTo(player.Character.Torso.Position) | |
1715 | wait(2) | |
1716 | SPL.Part = nil | |
1717 | end | |
1718 | end | |
1719 | end | |
1720 | if (string.find(msg, string.lower("gstaff"))) then | |
1721 | for word in msg:gmatch("%w+") do | |
1722 | local player = matchPlayer(word) | |
1723 | if (player ~= nil) then | |
1724 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1725 | SPL.Color = BrickColor.new("New Yeller") | |
1726 | SPL.Part = p | |
1727 | g = game:GetService("InsertService"):LoadAsset(33382711) | |
1728 | g.Parent = game.Workspace | |
1729 | g:MoveTo(player.Character.Torso.Position) | |
1730 | wait(2) | |
1731 | SPL.Part = nil | |
1732 | end | |
1733 | end | |
1734 | end | |
1735 | if (string.find(msg, string.lower("detinator"))) then | |
1736 | for word in msg:gmatch("%w+") do | |
1737 | local player = matchPlayer(word) | |
1738 | if (player ~= nil) then | |
1739 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1740 | SPL.Color = BrickColor.new("New Yeller") | |
1741 | SPL.Part = p | |
1742 | g = game:GetService("InsertService"):LoadAsset(33383241) | |
1743 | g.Parent = game.Workspace | |
1744 | g:MoveTo(player.Character.Torso.Position) | |
1745 | wait(2) | |
1746 | SPL.Part = nil | |
1747 | end | |
1748 | end | |
1749 | end | |
1750 | if (string.find(msg, string.lower("mdebug"))) then | |
1751 | local dbg = game.Workspace:getChildren() | |
1752 | for i=1,#dbg do | |
1753 | if dbg[i].className == "Hint" or dbg[i].className == "Message" then | |
1754 | dbg[i]:remove() | |
1755 | end | |
1756 | end | |
1757 | end | |
1758 | if (string.find(msg, string.lower("eyeball"))) then | |
1759 | for word in msg:gmatch("%w+") do | |
1760 | local player = matchPlayer(word) | |
1761 | if (player ~= nil) then | |
1762 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1763 | SPL.Color = BrickColor.new("New Yeller") | |
1764 | SPL.Part = p | |
1765 | g = game:GetService("InsertService"):LoadAsset(36186052) | |
1766 | g.Parent = game.Workspace | |
1767 | g:MoveTo(player.Character.Torso.Position) | |
1768 | wait(2) | |
1769 | SPL.Part = nil | |
1770 | end | |
1771 | end | |
1772 | end | |
1773 | if (string.find(msg, string.lower("insert"))) then | |
1774 | for word in msg:gmatch("%w+") do | |
1775 | local player = matchPlayer(word) | |
1776 | if (player ~= nil) then | |
1777 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1778 | SPL.Color = BrickColor.new("New Yeller") | |
1779 | SPL.Part = p | |
1780 | g = game:GetService("InsertService"):LoadAsset(21013233) | |
1781 | g.Parent = game.Workspace | |
1782 | g:MoveTo(player.Character.Torso.Position) | |
1783 | wait(2) | |
1784 | SPL.Part = nil | |
1785 | end | |
1786 | end | |
1787 | end | |
1788 | if (string.find(msg, string.lower("tools"))) then | |
1789 | for word in msg:gmatch("%w+") do | |
1790 | local player = matchPlayer(word) | |
1791 | if (player ~= nil) then | |
1792 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1793 | SPL.Color = BrickColor.new("New Yeller") | |
1794 | SPL.Part = p | |
1795 | g = game:GetService("InsertService"):LoadAsset(37467248) | |
1796 | g.Parent = player.Backpack | |
1797 | wait(2) | |
1798 | SPL.Part = nil | |
1799 | end | |
1800 | end | |
1801 | end | |
1802 | if (string.find(msg, string.lower("buildt"))) then | |
1803 | for word in msg:gmatch("%w+") do | |
1804 | local player = matchPlayer(word) | |
1805 | if (player ~= nil) then | |
1806 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1807 | SPL.Color = BrickColor.new("New Yeller") | |
1808 | SPL.Part = p | |
1809 | g = game:GetService("InsertService"):LoadAsset(41077772) | |
1810 | g.Parent = player.Backpack | |
1811 | wait(2) | |
1812 | SPL.Part = nil | |
1813 | end | |
1814 | end | |
1815 | end | |
1816 | if (string.find(msg, string.lower("sonic"))) then | |
1817 | for word in msg:gmatch("%w+") do | |
1818 | local player = matchPlayer(word) | |
1819 | if (player ~= nil) then | |
1820 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1821 | SPL.Color = BrickColor.new("New Yeller") | |
1822 | SPL.Part = p | |
1823 | g = game:GetService("InsertService"):LoadAsset(41077941) | |
1824 | g.Parent = player.Backpack | |
1825 | wait(2) | |
1826 | SPL.Part = nil | |
1827 | end | |
1828 | end | |
1829 | end | |
1830 | if (string.find(msg, string.lower("power"))) then | |
1831 | for word in msg:gmatch("%w+") do | |
1832 | local player = matchPlayer(word) | |
1833 | if (player ~= nil) then | |
1834 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1835 | SPL.Color = BrickColor.new("New Yeller") | |
1836 | SPL.Part = p | |
1837 | g = game:GetService("InsertService"):LoadAsset(37470897) | |
1838 | g.Parent = player.Backpack | |
1839 | wait(2) | |
1840 | SPL.Part = nil | |
1841 | end | |
1842 | end | |
1843 | end | |
1844 | if (string.find(msg, string.lower("rickroll"))) then | |
1845 | for word in msg:gmatch("%w+") do | |
1846 | local player = matchPlayer(word) | |
1847 | if (player ~= nil) then | |
1848 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1849 | SPL.Color = BrickColor.new("New Yeller") | |
1850 | SPL.Part = p | |
1851 | g = game:GetService("InsertService"):LoadAsset(32812583) | |
1852 | g.Parent = game.Workspace | |
1853 | g:MoveTo(player.Character.Torso.Position) | |
1854 | wait(2) | |
1855 | SPL.Part = nil | |
1856 | end | |
1857 | end | |
1858 | end | |
1859 | if (string.find(msg, string.lower("drone"))) then | |
1860 | for word in msg:gmatch("%w+") do | |
1861 | local player = matchPlayer(word) | |
1862 | if (player ~= nil) then | |
1863 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1864 | SPL.Color = BrickColor.new("New Yeller") | |
1865 | SPL.Part = p | |
1866 | g = game:GetService("InsertService"):LoadAsset(36871946) | |
1867 | g.Parent = game.Workspace | |
1868 | g:MoveTo(player.Character.Torso.Position) | |
1869 | wait(2) | |
1870 | SPL.Part = nil | |
1871 | end | |
1872 | end | |
1873 | end | |
1874 | if (string.find(msg, string.lower("pismove"))) then | |
1875 | for word in msg:gmatch("%w+") do | |
1876 | local player = matchPlayer(word) | |
1877 | if (player ~= nil) then | |
1878 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1879 | SPL.Color = BrickColor.new("New Yeller") | |
1880 | SPL.Part = p | |
1881 | g = game:GetService("InsertService"):LoadAsset(37303754) | |
1882 | g.Parent = game.Workspace | |
1883 | g:MoveTo(player.Character.Torso.Position) | |
1884 | wait(2) | |
1885 | SPL.Part = nil | |
1886 | end | |
1887 | end | |
1888 | end | |
1889 | if (string.find(msg, string.lower("rifle"))) then | |
1890 | for word in msg:gmatch("%w+") do | |
1891 | local player = matchPlayer(word) | |
1892 | if (player ~= nil) then | |
1893 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1894 | SPL.Color = BrickColor.new("New Yeller") | |
1895 | SPL.Part = p | |
1896 | g = game:GetService("InsertService"):LoadAsset(39034169) | |
1897 | g.Parent = game.Workspace | |
1898 | g:MoveTo(player.Character.Torso.Position) | |
1899 | wait(2) | |
1900 | SPL.Part = nil | |
1901 | end | |
1902 | end | |
1903 | end | |
1904 | if (string.find(msg, string.lower("edge"))) then | |
1905 | for word in msg:gmatch("%w+") do | |
1906 | local player = matchPlayer(word) | |
1907 | if (player ~= nil) then | |
1908 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1909 | SPL.Color = BrickColor.new("New Yeller") | |
1910 | SPL.Part = p | |
1911 | g = game:GetService("InsertService"):LoadAsset(39034068) | |
1912 | g.Parent = game.Workspace | |
1913 | g:MoveTo(player.Character.Torso.Position) | |
1914 | wait(2) | |
1915 | SPL.Part = nil | |
1916 | end | |
1917 | end | |
1918 | end | |
1919 | if (string.find(msg, string.lower("portal"))) then | |
1920 | for word in msg:gmatch("%w+") do | |
1921 | local player = matchPlayer(word) | |
1922 | if (player ~= nil) then | |
1923 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1924 | SPL.Color = BrickColor.new("New Yeller") | |
1925 | SPL.Part = p | |
1926 | g = game:GetService("InsertService"):LoadAsset(37007768) | |
1927 | g.Parent = game.Workspace | |
1928 | g:MoveTo(player.Character.Torso.Position) | |
1929 | wait(2) | |
1930 | SPL.Part = nil | |
1931 | end | |
1932 | end | |
1933 | end | |
1934 | if (string.find(msg, string.lower("wand"))) then | |
1935 | for word in msg:gmatch("%w+") do | |
1936 | local player = matchPlayer(word) | |
1937 | if (player ~= nil) then | |
1938 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1939 | SPL.Color = BrickColor.new("New Yeller") | |
1940 | SPL.Part = p | |
1941 | g = game:GetService("InsertService"):LoadAsset(40438327) | |
1942 | g.Parent = game.Workspace | |
1943 | g:MoveTo(player.Character.Torso.Position) | |
1944 | wait(2) | |
1945 | SPL.Part = nil | |
1946 | end | |
1947 | end | |
1948 | end | |
1949 | if (string.find(msg, string.lower("soulgun"))) then | |
1950 | for word in msg:gmatch("%w+") do | |
1951 | local player = matchPlayer(word) | |
1952 | if (player ~= nil) then | |
1953 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1954 | SPL.Color = BrickColor.new("New Yeller") | |
1955 | SPL.Part = p | |
1956 | g = game:GetService("InsertService"):LoadAsset(36874821) | |
1957 | g.Parent = game.Workspace | |
1958 | g:MoveTo(player.Character.Torso.Position) | |
1959 | wait(2) | |
1960 | SPL.Part = nil | |
1961 | end | |
1962 | end | |
1963 | end | |
1964 | if (string.find(msg, string.lower("bangun"))) then | |
1965 | for word in msg:gmatch("%w+") do | |
1966 | local player = matchPlayer(word) | |
1967 | if (player ~= nil) then | |
1968 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1969 | SPL.Color = BrickColor.new("New Yeller") | |
1970 | SPL.Part = p | |
1971 | g = game:GetService("InsertService"):LoadAsset(40850644) | |
1972 | g.Parent = game.Workspace | |
1973 | g:MoveTo(player.Character.Torso.Position) | |
1974 | wait(2) | |
1975 | SPL.Part = nil | |
1976 | end | |
1977 | end | |
1978 | end | |
1979 | if (string.find(msg, string.lower("windsoffjords"))) then | |
1980 | for word in msg:gmatch("%w+") do | |
1981 | local player = matchPlayer(word) | |
1982 | if (player ~= nil) then | |
1983 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1984 | SPL.Color = BrickColor.new("New Yeller") | |
1985 | SPL.Part = p | |
1986 | g = game:GetService("InsertService"):LoadAsset(32736432) | |
1987 | g.Parent = game.Workspace | |
1988 | g:MoveTo(player.Character.Torso.Position) | |
1989 | wait(2) | |
1990 | SPL.Part = nil | |
1991 | end | |
1992 | end | |
1993 | end | |
1994 | if (string.find(msg, string.lower("tv"))) then | |
1995 | for word in msg:gmatch("%w+") do | |
1996 | local player = matchPlayer(word) | |
1997 | if (player ~= nil) then | |
1998 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1999 | SPL.Color = BrickColor.new("New Yeller") | |
2000 | SPL.Part = p | |
2001 | g = game:GetService("InsertService"):LoadAsset(33217480) | |
2002 | g.Parent = game.Workspace | |
2003 | g:MoveTo(player.Character.Torso.Position) | |
2004 | wait(2) | |
2005 | SPL.Part = nil | |
2006 | end | |
2007 | end | |
2008 | end | |
2009 | if (string.find(msg, string.lower("scent"))) then | |
2010 | for word in msg:gmatch("%w+") do | |
2011 | local player = matchPlayer(word) | |
2012 | if (player ~= nil) then | |
2013 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2014 | SPL.Color = BrickColor.new("New Yeller") | |
2015 | SPL.Part = p | |
2016 | g = game:GetService("InsertService"):LoadAsset(33240689) | |
2017 | g.Parent = game.Workspace | |
2018 | g:MoveTo(player.Character.Torso.Position) | |
2019 | wait(2) | |
2020 | SPL.Part = nil | |
2021 | end | |
2022 | end | |
2023 | end | |
2024 | if (string.find(msg, string.lower("cframe"))) then | |
2025 | for word in msg:gmatch("%w+") do | |
2026 | local player = matchPlayer(word) | |
2027 | if (player ~= nil) then | |
2028 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2029 | SPL.Color = BrickColor.new("New Yeller") | |
2030 | SPL.Part = p | |
2031 | g = game:GetService("InsertService"):LoadAsset(32718282) | |
2032 | g.Parent = game.Workspace | |
2033 | g:MoveTo(player.Character.Torso.Position) | |
2034 | wait(2) | |
2035 | SPL.Part = nil | |
2036 | end | |
2037 | end | |
2038 | end | |
2039 | if (string.find(msg, string.lower("godscept"))) then | |
2040 | for word in msg:gmatch("%w+") do | |
2041 | local player = matchPlayer(word) | |
2042 | if (player ~= nil) then | |
2043 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2044 | SPL.Color = BrickColor.new("New Yeller") | |
2045 | SPL.Part = p | |
2046 | g = game:GetService("InsertService"):LoadAsset(35682284) | |
2047 | g.Parent = game.Workspace | |
2048 | g:MoveTo(player.Character.Torso.Position) | |
2049 | wait(2) | |
2050 | SPL.Part = nil | |
2051 | end | |
2052 | end | |
2053 | end | |
2054 | if (string.find(msg, string.lower("jail"))) then | |
2055 | for word in msg:gmatch("%w+") do | |
2056 | local player = matchPlayer(word) | |
2057 | if (player ~= nil) then | |
2058 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2059 | SPL.Color = BrickColor.new("Light grey") | |
2060 | SPL.Part = p | |
2061 | g = game:GetService("InsertService"):LoadAsset(32736079) | |
2062 | g.Parent = game.Workspace | |
2063 | g:MoveTo(player.Character.Torso.Position) | |
2064 | wait(2) | |
2065 | SPL.Part = nil | |
2066 | end | |
2067 | end | |
2068 | end | |
2069 | if (string.find(msg, string.lower("jet"))) then | |
2070 | for word in msg:gmatch("%w+") do | |
2071 | local player = matchPlayer(word) | |
2072 | if (player ~= nil) then | |
2073 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2074 | SPL.Color = BrickColor.new("New Yeller") | |
2075 | SPL.Part = p | |
2076 | g = game:GetService("InsertService"):LoadAsset(37363526) | |
2077 | g.Parent = player.Backpack | |
2078 | wait(2) | |
2079 | SPL.Part = nil | |
2080 | end | |
2081 | end | |
2082 | end | |
2083 | if (string.find(msg, string.lower("fire"))) then | |
2084 | for word in msg:gmatch("%w+") do | |
2085 | local player = matchPlayer(word) | |
2086 | if (player ~= nil) then | |
2087 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2088 | SPL.Color = BrickColor.new("New Yeller") | |
2089 | SPL.Part = p | |
2090 | f= Instance.new("Fire") | |
2091 | f.Parent = player.Character.Torso | |
2092 | wait(1) | |
2093 | SPL.Part = nil | |
2094 | end | |
2095 | end | |
2096 | end | |
2097 | if (string.find(msg, string.lower("suit"))) then | |
2098 | for word in msg:gmatch("%w+") do | |
2099 | local player = matchPlayer(word) | |
2100 | if (player ~= nil) then | |
2101 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2102 | SPL.Color = BrickColor.new("Really black") | |
2103 | SPL.Part = p | |
2104 | player.Character:BreakJoints() | |
2105 | player.CharacterAppearance = "http://www.roblox.com/asset/?id=27911184" | |
2106 | end | |
2107 | end | |
2108 | end | |
2109 | if (string.find(msg, string.lower("knight"))) then | |
2110 | for word in msg:gmatch("%w+") do | |
2111 | local player = matchPlayer(word) | |
2112 | if (player ~= nil) then | |
2113 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2114 | SPL.Color = BrickColor.new("Really black") | |
2115 | SPL.Part = p | |
2116 | player.Character:BreakJoints() | |
2117 | player.CharacterAppearance = "http://www.roblox.com/asset/?id=30364498" | |
2118 | end | |
2119 | end | |
2120 | end | |
2121 | if (string.find(msg, string.lower("stop"))) then | |
2122 | if (string.find(msg, string.lower("play"))) then | |
2123 | BG.Parent = p | |
2124 | end | |
2125 | end | |
2126 | if (string.find(msg, string.lower("start"))) then | |
2127 | if (string.find(msg, string.lower("play"))) then | |
2128 | BG.Parent = nil | |
2129 | end | |
2130 | end | |
2131 | if (string.find(msg, string.lower("invisible"))) then | |
2132 | for word in msg:gmatch("%w+") do | |
2133 | local player = matchPlayer(word) | |
2134 | if (player ~= nil) then | |
2135 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2136 | SPL.Color = BrickColor.new("Bright blue") | |
2137 | SPL.Part = p | |
2138 | for i,v in pairs(player.Character:GetChildren()) do | |
2139 | if (v:IsA("Part")) then | |
2140 | v.Transparency = 1 | |
2141 | end | |
2142 | end | |
2143 | wait(1) | |
2144 | SPL.Part = nil | |
2145 | end | |
2146 | end | |
2147 | end | |
2148 | if not (string.find(msg, string.lower("invisible"))) then | |
2149 | if (string.find(msg, string.lower("visible"))) then | |
2150 | for word in msg:gmatch("%w+") do | |
2151 | local player = matchPlayer(word) | |
2152 | if (player ~= nil) then | |
2153 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2154 | SPL.Color = BrickColor.new("Bright blue") | |
2155 | SPL.Part = p | |
2156 | for i,v in pairs(player.Character:GetChildren()) do | |
2157 | if (v:IsA("Part")) then | |
2158 | v.Transparency = 0 | |
2159 | end | |
2160 | end | |
2161 | wait(1) | |
2162 | SPL.Part = nil | |
2163 | end | |
2164 | end | |
2165 | end | |
2166 | end | |
2167 | end | |
2168 | Player.Chatted:connect(onChatted) | |
2169 | --<------------------------------------------------------------------------>-- | |
2170 | -- ... Leviated Orb ... -- | |
2171 | --<------------------------------------------------------------------------>-- | |
2172 | local Levitated = 0 | |
2173 | local LevitateDir = -1 | |
2174 | while true do wait() | |
2175 | pcall(function() | |
2176 | M.Parent = Player.Character | |
2177 | Levitated = Levitated + LevitateDir / 20 | |
2178 | if Levitated >= 1 or Levitated <= -1 then | |
2179 | LevitateDir = -LevitateDir | |
2180 | end | |
2181 | if (FOLLOW == true) then | |
2182 | BP.position = (Player.Character.Torso.CFrame * CFrame.new(5, RISE, -2.5)).p + Vector3.new(0, Levitated, 0) | |
2183 | end | |
2184 | end) | |
2185 | end | |
2186 | Game.JointsService.DescendantAdded:connect() | |
2187 | Workspace.DescendantAdded:connect() |