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