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