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