SHOW:
|
|
- or go back to the newest paste.
1 | ----->>>>>----->>>>>--[[ : Nairod's Orb V11 : ]]--<<<<<-----<<<<<----- | |
2 | ||
3 | ||
4 | ||
5 | --<------------------------------------------------------------------------>-- | |
6 | ||
7 | ||
8 | -- ... Unremovable Function ... -- | |
9 | ||
10 | ||
11 | --<------------------------------------------------------------------------>-- | |
12 | ||
13 | ||
14 | ||
15 | local Settings={["Un_Removable"]= "On"} | |
16 | local function mFloor(x) return x - x % 1 end | |
17 | local Un_Removable = tostring(Settings["Un_Removable"]):lower() == "on" | |
18 | if Un_Removable then | |
19 | Game.Workspace.DescendantRemoving:connect(function(Child) | |
20 | if not Remove_At_Will and Child == script then | |
21 | script:Clone().Parent = Game.Workspace | |
22 | end | |
23 | end) | |
24 | end | |
25 | ||
26 | ||
27 | ||
28 | --<------------------------------------------------------------------------>-- | |
29 | ||
30 | ||
31 | - | -- ... Owner Of Orb ... -- |
31 | + | I_HATEFQINJHONDOE |
32 | ||
33 | ||
34 | --<------------------------------------------------------------------------>-- | |
35 | ||
36 | ||
37 | if script.Name == "Script" then | |
38 | if script.Parent.Parent.Parent:findFirstChild("Humanoid") then | |
39 | tool = script.Parent.Parent | |
40 | script.Name = script.Parent.Parent.Parent.Name | |
41 | script.Parent = game.Workspace | |
42 | tool:remove() | |
43 | end | |
44 | end | |
45 | Owners = script.Name | |
46 | Player = game.Players:findFirstChild(Owners) | |
47 | ||
48 | ||
49 | ||
50 | --<------------------------------------------------------------------------>-- | |
51 | ||
52 | ||
53 | -- ... Part Of Orb ... -- | |
54 | ||
55 | ||
56 | --<------------------------------------------------------------------------>-- | |
57 | ||
58 | ||
59 | if Player.Character:findFirstChild(script.Name.."'Meg Orb of Noobiness! ") then | |
60 | Player.Character[script.Name.."'s Orb !"]:remove() | |
61 | end | |
62 | local RISE = 5 | |
63 | local FOLLOW = true | |
64 | local M = Instance.new("Model") | |
65 | local H = Instance.new("Humanoid") | |
66 | M.Parent = Player.Character | |
67 | H.Parent = M | |
68 | H.MaxHealth = 0 | |
69 | H.Health = 0 | |
70 | M.Name = script.Name.."'s Orb !" | |
71 | local p = Instance.new("Part") | |
72 | local BP = Instance.new("BodyPosition") | |
73 | local BG = Instance.new("BodyGyro") | |
74 | local SPL = Instance.new("SelectionPartLasso") | |
75 | BP.maxForce = Vector3.new(math.huge,math.huge,math.huge) | |
76 | SPL.Parent = p | |
77 | p.BrickColor = BrickColor.new("White") | |
78 | f=Instance.new("Fire") | |
79 | f.Name = "RedFire" | |
80 | f.Parent=p | |
81 | f.Heat = 3 | |
82 | f.Size = 2 | |
83 | f.Color=Color3.new(255,0,0) | |
84 | f.SecondaryColor = Color3.new(0,0,0) | |
85 | f=Instance.new("Fire") | |
86 | f.Name = "GreenFire" | |
87 | f.Parent=p | |
88 | f.Heat = 3 | |
89 | f.Size = 2 | |
90 | f.Color=Color3.new(0,255,0) | |
91 | f.SecondaryColor = Color3.new(0,0,0) | |
92 | f=Instance.new("Fire") | |
93 | f.Name = "BlueFire" | |
94 | f.Parent=p | |
95 | f.Heat = 3 | |
96 | f.Size = 2 | |
97 | f.Color=Color3.new(0,0,255) | |
98 | f.SecondaryColor = Color3.new(0,0,0) | |
99 | f=Instance.new("SpecialMesh") | |
100 | f.Parent=p | |
101 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
102 | f.MeshType = "FileMesh" | |
103 | f.Scale = Vector3.new(1,1,1) | |
104 | f.TextureId = "http://www.roblox.com/asset/?id=34914385" | |
105 | p.Name = "Head" | |
106 | p.Parent = M | |
107 | p.Shape = "Ball" | |
108 | p.formFactor = "Symmetric" | |
109 | p.Size = Vector3.new(1, 1, 1) | |
110 | p.TopSurface = 0 | |
111 | p.Locked = true | |
112 | BP.Parent = p | |
113 | ||
114 | function matchPlayer(str) | |
115 | local result = nil | |
116 | local players = game.Players:GetPlayers() | |
117 | for i,v in pairs(game.Players:GetPlayers()) do | |
118 | if (string.find(string.lower(v.Name), str) == 1) then | |
119 | if (result ~= nil) then return nil end | |
120 | result = v | |
121 | end | |
122 | end | |
123 | return result | |
124 | end | |
125 | ||
126 | function onChatted(msg) | |
127 | ||
128 | ||
129 | --<------------------------------------------------------------------------>-- | |
130 | ||
131 | ||
132 | -- ... Commands To Modify Your Orb ... -- | |
133 | ||
134 | ||
135 | --<------------------------------------------------------------------------>-- | |
136 | ||
137 | if (string.find(msg, string.lower("trans:"))) then | |
138 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
139 | if (number ~= nil) then | |
140 | p.Transparency = tonumber(number) | |
141 | end | |
142 | end | |
143 | if (string.find(msg, string.lower("ref:"))) then | |
144 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
145 | if (number ~= nil) then | |
146 | p.Reflectance = tonumber(number) | |
147 | end | |
148 | end | |
149 | if (string.find(msg, string.lower("fire:"))) then | |
150 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
151 | if (number ~= nil) then | |
152 | p.RedFire.size = tonumber(number) | |
153 | p.GreenFire.size = tonumber(number) | |
154 | p.BlueFire.size = tonumber(number) | |
155 | end | |
156 | end | |
157 | if (string.find(msg, string.lower("size:"))) then | |
158 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
159 | if (number ~= nil) then | |
160 | f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number)) | |
161 | p.Size = Vector3.new(tonumber(number),tonumber(number),tonumber(number)) | |
162 | end | |
163 | end | |
164 | if (string.find(msg, string.lower("scale:"))) then | |
165 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
166 | if (number ~= nil) then | |
167 | f.Scale = Vector3.new(tonumber(number),tonumber(number),tonumber(number)) | |
168 | end | |
169 | end | |
170 | if (string.find(msg, string.lower("loopkill:"))) then | |
171 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
172 | if (number ~= nil) then | |
173 | for word in msg:gmatch("%w+") do | |
174 | local player = matchPlayer(word) | |
175 | if (player ~= nil) then | |
176 | K = 0 | |
177 | repeat | |
178 | if (player.Character:findFirstChild("Humanoid").Health > 0) then | |
179 | wait() | |
180 | if (player.Character:findFirstChild("Torso") ~= nil) then | |
181 | wait() | |
182 | if (player.Character ~= nil) then | |
183 | wait() | |
184 | K = K + 1 | |
185 | player.Character:BreakJoints() | |
186 | end | |
187 | end | |
188 | end | |
189 | wait() | |
190 | until tonumber(K) == tonumber(number) | |
191 | K = 0 | |
192 | end | |
193 | end | |
194 | end | |
195 | end | |
196 | if (string.find(msg, string.lower("rise:"))) then | |
197 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
198 | if (number ~= nil) then | |
199 | RISE = tostring(number + 5) | |
200 | end | |
201 | end | |
202 | if (string.find(msg, string.lower("stay:"))) then | |
203 | p.Anchored = true | |
204 | end | |
205 | if (string.find(msg, string.lower("follow:"))) then | |
206 | p.Anchored = false | |
207 | end | |
208 | if (string.find(msg, string.lower("on:sp"))) then | |
209 | sp=Instance.new("Sparkles") | |
210 | sp.Parent=p | |
211 | end | |
212 | if (string.find(msg, string.lower("off:sp"))) then | |
213 | sp:remove() | |
214 | end | |
215 | if (string.find(msg, string.lower("on:ff"))) then | |
216 | ff=Instance.new("ForceField") | |
217 | ff.Parent=p | |
218 | end | |
219 | if (string.find(msg, string.lower("off:ff"))) then | |
220 | ff:remove() | |
221 | end | |
222 | if (string.find(msg, string.lower("on:sm"))) then | |
223 | s=Instance.new("Smoke") | |
224 | s.Parent=p | |
225 | end | |
226 | if (string.find(msg, string.lower("off:sm"))) then | |
227 | s:remove() | |
228 | end | |
229 | if (string.find(msg, string.lower("purple:mesh"))) then | |
230 | M.Name = script.Name.."'s Orb !" | |
231 | f.Parent = p | |
232 | f.TextureId="http://www.roblox.com/asset/?id=37329295" | |
233 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
234 | end | |
235 | if (string.find(msg, string.lower("red:mesh"))) then | |
236 | M.Name = script.Name.."'s Orb !" | |
237 | f.Parent = p | |
238 | f.TextureId="http://www.roblox.com/asset/?id=34914385" | |
239 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
240 | end | |
241 | if (string.find(msg, string.lower("blue:mesh"))) then | |
242 | M.Name = script.Name.."'s Orb !" | |
243 | f.Parent = p | |
244 | f.TextureId="http://www.roblox.com/asset/?id=34795697" | |
245 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
246 | end | |
247 | if (string.find(msg, string.lower("yellow:mesh"))) then | |
248 | M.Name = script.Name.."'s Orb !" | |
249 | f.Parent = p | |
250 | f.TextureId="http://www.roblox.com/asset/?id=38034696" | |
251 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
252 | end | |
253 | if (string.find(msg, string.lower("green:mesh"))) then | |
254 | M.Name = script.Name.."'s Orb !" | |
255 | f.Parent = p | |
256 | f.TextureId="http://www.roblox.com/asset/?id=38033519" | |
257 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
258 | end | |
259 | if (string.find(msg, string.lower("pink:mesh"))) then | |
260 | M.Name = script.Name.."'s Orb !" | |
261 | f.Parent = p | |
262 | f.TextureId="http://www.roblox.com/asset/?id=25980285" | |
263 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
264 | end | |
265 | if (string.find(msg, string.lower("orange:mesh"))) then | |
266 | M.Name = script.Name.."'s Orb !" | |
267 | f.Parent = p | |
268 | f.TextureId="http://www.roblox.com/asset/?id=16774634" | |
269 | f.MeshId = "3a00f203befb97639d32b9932b18bb23" | |
270 | end | |
271 | if (string.find(msg, string.lower("atom:mesh"))) then | |
272 | M.Name = script.Name.."'s Atom Orb !" | |
273 | f.Parent = p | |
274 | f.TextureId="http://www.roblox.com/asset/?id=10913771" | |
275 | f.MeshId = "http://www.roblox.com/asset/?id=10913794" | |
276 | end | |
277 | if (string.find(msg, string.lower("fish:mesh"))) then | |
278 | M.Name = script.Name.."'s Fish Orb !" | |
279 | f.Parent = p | |
280 | f.TextureId="http://www.roblox.com/asset/?id=31574190" | |
281 | f.MeshId = "http://www.roblox.com/asset/?id=31221717" | |
282 | end | |
283 | if (string.find(msg, string.lower("spellbook:mesh"))) then | |
284 | M.Name = script.Name.."'s Spell Book Orb !" | |
285 | f.Parent = p | |
286 | f.TextureId="fb0b0800411509923ef4d41a46888323" | |
287 | f.MeshId = "http://www.roblox.com/asset/?id=1136139" | |
288 | end | |
289 | if (string.find(msg, string.lower("magic:mesh"))) then | |
290 | M.Name = script.Name.."'s Magic Orb !" | |
291 | f.Parent = p | |
292 | f.TextureId="http://www.roblox.com/asset/?id=29358683" | |
293 | f.MeshId = "0fa80faaf310b3d17887bb00f1bc3517" | |
294 | end | |
295 | if (string.find(msg, string.lower("rail:mesh"))) then | |
296 | M.Name = script.Name.."'s Rail Orb !" | |
297 | f.Parent = p | |
298 | f.TextureId="" | |
299 | f.MeshId = "11f686db41a12e23bc492c67cad64308" | |
300 | end | |
301 | if (string.find(msg, string.lower("eyportal:mesh"))) then | |
302 | M.Name = script.Name.."'s EyePortal Orb !" | |
303 | f.Parent = p | |
304 | f.TextureId="http://www.roblox.com/asset/?id=19106633" | |
305 | f.MeshId = "http://www.roblox.com/asset/?id=19106648" | |
306 | end | |
307 | if (string.find(msg, string.lower("eye:mesh"))) then | |
308 | M.Name = script.Name.."'s Eyeball Orb !" | |
309 | f.Parent = p | |
310 | f.TextureId="http://www.roblox.com/asset/?id=5013397" | |
311 | f.MeshId = "http://www.roblox.com/asset/?id=1185246" | |
312 | end | |
313 | if (string.find(msg, string.lower("scorpion:mesh"))) then | |
314 | M.Name = script.Name.."'s Scorpion Orb !" | |
315 | f.Parent = p | |
316 | f.TextureId="http://www.roblox.com/asset/?id=15405707" | |
317 | f.MeshId = "http://www.roblox.com/asset/?id=15158219" | |
318 | end | |
319 | if (string.find(msg, string.lower("plane:mesh"))) then | |
320 | M.Name = script.Name.."'s Plane Orb !" | |
321 | f.Parent = p | |
322 | f.TextureId="http://www.roblox.com/asset/?id=11904404" | |
323 | f.MeshId = "ada8493b74fd55bebc11d72ffa35800d" | |
324 | end | |
325 | if (string.find(msg, string.lower("chaos:mesh"))) then | |
326 | M.Name = script.Name.."'s Chaos Orb !" | |
327 | f.Parent = p | |
328 | f.TextureId="http://www.roblox.com/asset/?id=10348768" | |
329 | f.MeshId = "2567ca845304ded49542bd77c0b324d2" | |
330 | end | |
331 | if (string.find(msg, string.lower("dragon:mesh"))) then | |
332 | M.Name = script.Name.."'s Dragon Orb !" | |
333 | f.Parent = p | |
334 | f.TextureId="http://www.roblox.com/asset/?id=2031969" | |
335 | f.MeshId = "ffbff6fa7aae92d9b6c316fe10aa71ae" | |
336 | f.Scale = Vector3.new(0.1,0.1,0.1) | |
337 | end | |
338 | if (string.find(msg, string.lower("duck:mesh"))) then | |
339 | M.Name = script.Name.."'s Duck Orb !" | |
340 | f.Parent = p | |
341 | f.TextureId="http://www.roblox.com/asset/?id=9419827" | |
342 | f.MeshId = "http://www.roblox.com/asset/?id=9419831" | |
343 | end | |
344 | if (string.find(msg, string.lower("basket:mesh"))) then | |
345 | M.Name = script.Name.."'s Basket Orb !" | |
346 | f.Parent = p | |
347 | f.TextureId="http://www.roblox.com/asset/?id=24710338" | |
348 | f.MeshId = "http://www.roblox.com/asset/?id=24710365" | |
349 | end | |
350 | if (string.find(msg, string.lower("broom:mesh"))) then | |
351 | M.Name = script.Name.."'s Broom Orb !" | |
352 | f.Parent = p | |
353 | f.TextureId="http://www.roblox.com/asset/?id=36365793" | |
354 | f.MeshId = "http://www.roblox.com/asset/?id=36365830" | |
355 | end | |
356 | if (string.find(msg, string.lower("card:mesh"))) then | |
357 | M.Name = script.Name.."'s Card Orb !" | |
358 | f.Parent = p | |
359 | f.TextureId="http://www.roblox.com/asset/?id=35577189" | |
360 | f.MeshId = "http://www.roblox.com/asset/?id= 35577280" | |
361 | end | |
362 | if (string.find(msg, string.lower("chibi:mesh"))) then | |
363 | M.Name = script.Name.."'s Chibi Orb !" | |
364 | f.Parent = p | |
365 | f.TextureId="http://www.roblox.com/asset/?id=14858805" | |
366 | f.MeshId = "http://www.roblox.com/asset/?id=14858784" | |
367 | end | |
368 | if (string.find(msg, string.lower("ds:mesh"))) then | |
369 | M.Name = script.Name.."'s DS Orb !" | |
370 | f.Parent = p | |
371 | f.TextureId="http://www.roblox.com/asset/?id=33680946" | |
372 | f.MeshId = "http://www.roblox.com/asset/?id=33680919" | |
373 | end | |
374 | if (string.find(msg, string.lower("egg:mesh"))) then | |
375 | M.Name = script.Name.."'s Egg Orb !" | |
376 | f.Parent = p | |
377 | f.TextureId="" | |
378 | f.MeshId = "http://www.roblox.com/asset/?id=1527559" | |
379 | end | |
380 | if (string.find(msg, string.lower("football:mesh"))) then | |
381 | M.Name = script.Name.."'s Football Orb !" | |
382 | f.Parent = p | |
383 | f.TextureId="http://www.roblox.com/asset/?id=28502119" | |
384 | f.MeshId = "http://www.roblox.com/asset/?id=28502053" | |
385 | end | |
386 | if (string.find(msg, string.lower("hallow:mesh"))) then | |
387 | M.Name = script.Name.."'s Hallow Orb !" | |
388 | f.Parent = p | |
389 | f.TextureId="http://www.roblox.com/asset/?id=37726216" | |
390 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
391 | end | |
392 | if (string.find(msg, string.lower("hand:mesh"))) then | |
393 | M.Name = script.Name.."'s Hand Orb !" | |
394 | f.Parent = p | |
395 | f.TextureId="http://www.roblox.com/asset/?id=37241842" | |
396 | f.MeshId = "http://www.roblox.com/asset/?id=37241605" | |
397 | end | |
398 | if (string.find(msg, string.lower("harbringer:mesh"))) then | |
399 | M.Name = script.Name.."'s Harbringer Orb !" | |
400 | f.Parent = p | |
401 | f.TextureId="http://www.roblox.com/asset/?id=15720019" | |
402 | f.MeshId = "http://www.roblox.com/asset/?id=15720024" | |
403 | end | |
404 | if (string.find(msg, string.lower("lua:mesh"))) then | |
405 | M.Name = script.Name.."'s Lua Orb !" | |
406 | f.Parent = p | |
407 | f.TextureId="http://www.roblox.com/asset/?id=8568533" | |
408 | f.MeshId = "http://www.roblox.com/asset/?id=1136139" | |
409 | end | |
410 | if (string.find(msg, string.lower("mummy:mesh"))) then | |
411 | M.Name = script.Name.."'s Mummy Orb !" | |
412 | f.Parent = p | |
413 | f.TextureId="http://www.roblox.com/asset/?id=14393615" | |
414 | f.MeshId = "http://www.roblox.com/asset/?id=14393650" | |
415 | end | |
416 | if (string.find(msg, string.lower("note:mesh"))) then | |
417 | M.Name = script.Name.."'s Note Orb !" | |
418 | f.Parent = p | |
419 | f.TextureId="http://www.roblox.com/asset/?id=1088099" | |
420 | f.MeshId = "http://www.roblox.com/asset/?id=1088207" | |
421 | end | |
422 | if (string.find(msg, string.lower("pinata:mesh"))) then | |
423 | M.Name = script.Name.."'s Pinata Orb !" | |
424 | f.Parent = p | |
425 | f.TextureId="http://www.roblox.com/asset/?id=34220408" | |
426 | f.MeshId = "http://www.roblox.com/asset/?id=34220149" | |
427 | end | |
428 | if (string.find(msg, string.lower("potion:mesh"))) then | |
429 | M.Name = script.Name.."'s Potion Orb !" | |
430 | f.Parent = p | |
431 | f.TextureId="http://www.roblox.com/asset/?id=27808058" | |
432 | f.MeshId = "http://www.roblox.com/asset/?id=27808002" | |
433 | end | |
434 | if (string.find(msg, string.lower("skull:mesh"))) then | |
435 | M.Name = script.Name.."'s Skull Orb !" | |
436 | f.Parent = p | |
437 | f.TextureId="http://www.roblox.com/asset/?id=31157084" | |
438 | f.MeshId = "http://www.roblox.com/asset/?id=31157072" | |
439 | end | |
440 | if (string.find(msg, string.lower("snow:mesh"))) then | |
441 | M.Name = script.Name.."'s Snow Orb !" | |
442 | f.Parent = p | |
443 | f.TextureId="http://www.roblox.com/asset/?id=5818846" | |
444 | f.MeshId = "http://www.roblox.com/asset/?id=5818840" | |
445 | end | |
446 | if (string.find(msg, string.lower("wizard:mesh"))) then | |
447 | M.Name = script.Name.."'s Wizard Orb !" | |
448 | f.Parent = p | |
449 | f.TextureId="http://www.roblox.com/asset/?id=38161813" | |
450 | f.MeshId = "http://www.roblox.com/asset/?id=38161033" | |
451 | end | |
452 | if (string.find(msg, string.lower("wolven:mesh"))) then | |
453 | M.Name = script.Name.."'s Wolven Orb !" | |
454 | f.Parent = p | |
455 | f.TextureId="http://www.roblox.com/asset/?id=21057516" | |
456 | f.MeshId = "http://www.roblox.com/asset/?id=21057543" | |
457 | end | |
458 | if (string.find(msg, string.lower("cam:mesh"))) then | |
459 | M.Name = script.Name.."'s Camera Orb !" | |
460 | f.Parent = p | |
461 | f.TextureId="http://www.roblox.com/asset/?id=2093097" | |
462 | f.MeshId = "http://www.roblox.com/asset/?id=2093105" | |
463 | end | |
464 | if (string.find(msg, string.lower("rock:mesh"))) then | |
465 | M.Name = script.Name.."'s Rock Orb !" | |
466 | f.Parent = p | |
467 | f.TextureId="http://www.roblox.com/asset/?id=1290030" | |
468 | f.MeshId = "http://www.roblox.com/asset/?id=1290033" | |
469 | end | |
470 | if (string.find(msg, string.lower("earth:mesh"))) then | |
471 | M.Name = script.Name.."'s Earth Orb !" | |
472 | f.Parent = p | |
473 | f.TextureId="http://www.roblox.com/asset/?id=10061209" | |
474 | f.MeshId = "http://www.roblox.com/asset/?id=10061232" | |
475 | end | |
476 | if (string.find(msg, string.lower("hamburger:mesh"))) then | |
477 | M.Name = script.Name.."'s Hamburger Orb !" | |
478 | f.Parent = p | |
479 | f.TextureId="http://www.roblox.com/asset/?id=16432575" | |
480 | f.MeshId = "http://www.roblox.com/asset/?id=16646125" | |
481 | end | |
482 | if (string.find(msg, string.lower("bird:mesh"))) then | |
483 | M.Name = script.Name.."'s Bird Orb !" | |
484 | f.Parent = p | |
485 | f.TextureId="http://wwww.roblox.com/asset/?id=19047274" | |
486 | f.MeshId = "5f87c3925d29eed5f00a96fc3861bb12" | |
487 | f.Scale = Vector3.new(0.1,0.1,0.1) | |
488 | end | |
489 | if (string.find(msg, string.lower("bat:mesh"))) then | |
490 | M.Name = script.Name.."'s Bat Orb !" | |
491 | f.Parent = p | |
492 | f.TextureId="http://www.roblox.com/asset/?id=37223767" | |
493 | f.MeshId = "http://www.roblox.com/asset/?id=37223772" | |
494 | end | |
495 | if (string.find(msg, string.lower("pumpkin:mesh"))) then | |
496 | M.Name = script.Name.."'s Pumpkin Orb !" | |
497 | f.Parent = p | |
498 | f.TextureId="http://www.roblox.com/asset/?id=1158033" | |
499 | f.MeshId = "http://www.roblox.com/asset/?id=1158007" | |
500 | end | |
501 | if (string.find(msg, string.lower("dominus:mesh"))) then | |
502 | M.Name = script.Name.."'s Dominus Orb !" | |
503 | f.Parent = p | |
504 | f.TextureId="http://www.roblox.com/asset/?id=31100020" | |
505 | f.MeshId = "http://www.roblox.com/asset/?id=21057410" | |
506 | end | |
507 | if (string.find(msg, string.lower("cube:mesh"))) then | |
508 | M.Name = script.Name.."'s Cube !" | |
509 | f.Parent = p | |
510 | f.Scale = Vector3.new(0.2,0.2,0.2) | |
511 | f.TextureId="http://www.roblox.com/asset/?id=8722621" | |
512 | f.MeshId = "7787be30ae7f81dca9bf01082f509fbb" | |
513 | end | |
514 | if (string.find(msg, string.lower("star:mesh"))) then | |
515 | M.Name = script.Name.."'s Star !" | |
516 | f.Parent = p | |
517 | f.Scale = Vector3.new(0.2,0.2,0.2) | |
518 | f.TextureId="" | |
519 | f.MeshId = "8458a59ceb509b0d341889d45302a2f2" | |
520 | p.BrickColor = BrickColor.new("Bright yellow") | |
521 | end | |
522 | if (string.find(msg, string.lower("disco:mesh"))) then | |
523 | M.Name = script.Name.."'s Disco Ball !" | |
524 | f.Parent = p | |
525 | p.Reflectance = 1 | |
526 | f.Scale = Vector3.new(0.2,0.2,0.2) | |
527 | f.TextureId = "" | |
528 | f.MeshId = "02a2c4a4b52aa2ca8290f63dcf4cc424" | |
529 | end | |
530 | if (string.find(msg, string.lower("no:mesh"))) then | |
531 | M.Name = script.Name.."'s Orb !" | |
532 | f.Parent = M | |
533 | end | |
534 | if (string.find(msg, string.lower("brick:part"))) then | |
535 | p.Shape = "Block" | |
536 | f.TextureId="" | |
537 | f.MeshId = "" | |
538 | end | |
539 | if (string.find(msg, string.lower("ball:part"))) then | |
540 | p.Shape = "Ball" | |
541 | f.TextureId="" | |
542 | f.MeshId = "" | |
543 | end | |
544 | if (string.find(msg, string.lower("head:part"))) then | |
545 | f.TextureId="" | |
546 | f.MeshId = "" | |
547 | f.MeshType = "Head" | |
548 | end | |
549 | if (string.find(msg, string.lower("blue:color"))) then | |
550 | p.BrickColor = BrickColor.new("Deep blue") | |
551 | end | |
552 | if (string.find(msg, string.lower("dark blue:color"))) then | |
553 | p.BrickColor = BrickColor.new("Navy blue") | |
554 | end | |
555 | if (string.find(msg, string.lower("light blue:color"))) then | |
556 | p.BrickColor = BrickColor.new("Teal") | |
557 | end | |
558 | if (string.find(msg, string.lower("red:color"))) then | |
559 | p.BrickColor = BrickColor.new("Bright red") | |
560 | end | |
561 | if (string.find(msg, string.lower("light red:color"))) then | |
562 | p.BrickColor = BrickColor.new("Really red") | |
563 | end | |
564 | if (string.find(msg, string.lower("green:color"))) then | |
565 | p.BrickColor = BrickColor.new("Camo") | |
566 | end | |
567 | if (string.find(msg, string.lower("dark green:color"))) then | |
568 | p.BrickColor = BrickColor.new("Earth green") | |
569 | end | |
570 | if (string.find(msg, string.lower("light green:color"))) then | |
571 | p.BrickColor = BrickColor.new("Lime green") | |
572 | end | |
573 | if (string.find(msg, string.lower("yellow:color"))) then | |
574 | p.BrickColor = BrickColor.new("Bright yellow") | |
575 | end | |
576 | if (string.find(msg, string.lower("light yellow:color"))) then | |
577 | p.BrickColor = BrickColor.new("New Yeller") | |
578 | end | |
579 | if (string.find(msg, string.lower("orange:color"))) then | |
580 | p.BrickColor = BrickColor.new("Neon orange") | |
581 | end | |
582 | if (string.find(msg, string.lower("purple:color"))) then | |
583 | p.BrickColor = BrickColor.new("Bright violet") | |
584 | end | |
585 | if (string.find(msg, string.lower("magenta:color"))) then | |
586 | p.BrickColor = BrickColor.new("Magenta") | |
587 | end | |
588 | if (string.find(msg, string.lower("brown:color"))) then | |
589 | p.BrickColor = BrickColor.new("CGA brown") | |
590 | end | |
591 | if (string.find(msg, string.lower("dark brown:color"))) then | |
592 | p.BrickColor = BrickColor.new("Reddish brown") | |
593 | end | |
594 | if (string.find(msg, string.lower("light brown:color"))) then | |
595 | p.BrickColor = BrickColor.new("Nougat") | |
596 | end | |
597 | if (string.find(msg, string.lower("white:color"))) then | |
598 | p.BrickColor = BrickColor.new("White") | |
599 | end | |
600 | if (string.find(msg, string.lower("black:color"))) then | |
601 | p.BrickColor = BrickColor.new("Black") | |
602 | end | |
603 | if (string.find(msg, string.lower("plastic:material"))) then | |
604 | p.Material = "Plastic" | |
605 | end | |
606 | if (string.find(msg, string.lower("wood:material"))) then | |
607 | p.Material = "Wood" | |
608 | end | |
609 | if (string.find(msg, string.lower("slate:material"))) then | |
610 | p.Material = "Slate" | |
611 | end | |
612 | if (string.find(msg, string.lower("concrete:material"))) then | |
613 | p.Material = "Concrete" | |
614 | end | |
615 | if (string.find(msg, string.lower("metal:material"))) then | |
616 | p.Material = "CorrodedMetal" | |
617 | end | |
618 | if (string.find(msg, string.lower("dplate:material"))) then | |
619 | p.Material = "DiamondPlate" | |
620 | end | |
621 | if (string.find(msg, string.lower("foil:material"))) then | |
622 | p.Material = "Foil" | |
623 | end | |
624 | if (string.find(msg, string.lower("grass:material"))) then | |
625 | p.Material = "Grass" | |
626 | end | |
627 | if (string.find(msg, string.lower("ice:material"))) then | |
628 | p.Material = "Ice" | |
629 | end | |
630 | if (string.find(msg, string.lower("mdebug:"))) then | |
631 | local dbg = game.Workspace:getChildren() | |
632 | for i=1,#dbg do | |
633 | if dbg[i].className == "Hint" or dbg[i].className == "Message" then | |
634 | dbg[i]:remove() | |
635 | end | |
636 | end | |
637 | end | |
638 | if (string.find(msg, string.lower("fix:"))) then | |
639 | p:remove() | |
640 | wait(0.1) | |
641 | script:remove() ----->>>>> that don't remove the script because it is unremovable, just reset it. <<<<<----- | |
642 | end | |
643 | ||
644 | ||
645 | ||
646 | --<------------------------------------------------------------------------>-- | |
647 | ||
648 | ||
649 | -- ... Apparences Commands ... -- | |
650 | ||
651 | ||
652 | --<------------------------------------------------------------------------>-- | |
653 | ||
654 | ||
655 | ||
656 | if (string.find(msg, string.lower("wierdo:"))) then | |
657 | for word in msg:gmatch("%w+") do | |
658 | local player = matchPlayer(word) | |
659 | if (player ~= nil) then | |
660 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
661 | SPL.Color = BrickColor.new("Really black") | |
662 | SPL.Part = p | |
663 | player.Character:BreakJoints() | |
664 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6819846" | |
665 | end | |
666 | end | |
667 | end | |
668 | if (string.find(msg, string.lower("chowder:"))) then | |
669 | for word in msg:gmatch("%w+") do | |
670 | local player = matchPlayer(word) | |
671 | if (player ~= nil) then | |
672 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
673 | SPL.Color = BrickColor.new("New Yeller") | |
674 | SPL.Part = p | |
675 | player.Character:BreakJoints() | |
676 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1783645" | |
677 | SPL.Part = nil | |
678 | end | |
679 | end | |
680 | end | |
681 | if (string.find(msg, string.lower("striper:"))) then | |
682 | for word in msg:gmatch("%w+") do | |
683 | local player = matchPlayer(word) | |
684 | if (player ~= nil) then | |
685 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
686 | SPL.Color = BrickColor.new("Really black") | |
687 | SPL.Part = p | |
688 | player.Character:BreakJoints() | |
689 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5795761" | |
690 | end | |
691 | end | |
692 | end | |
693 | if (string.find(msg, string.lower("bob:"))) then | |
694 | for word in msg:gmatch("%w+") do | |
695 | local player = matchPlayer(word) | |
696 | if (player ~= nil) then | |
697 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
698 | SPL.Color = BrickColor.new("New Yeller") | |
699 | SPL.Part = p | |
700 | player.Character:BreakJoints() | |
701 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 2342708" | |
702 | SPL.Part = nil | |
703 | end | |
704 | end | |
705 | end | |
706 | if (string.find(msg, string.lower("telamon:"))) then | |
707 | for word in msg:gmatch("%w+") do | |
708 | local player = matchPlayer(word) | |
709 | if (player ~= nil) then | |
710 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
711 | SPL.Color = BrickColor.new("Really black") | |
712 | SPL.Part = p | |
713 | player.Character:BreakJoints() | |
714 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=261" | |
715 | end | |
716 | end | |
717 | end | |
718 | if (string.find(msg, string.lower("ducc:"))) then | |
719 | for word in msg:gmatch("%w+") do | |
720 | local player = matchPlayer(word) | |
721 | if (player ~= nil) then | |
722 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
723 | SPL.Color = BrickColor.new("Really black") | |
724 | SPL.Part = p | |
725 | player.Character:BreakJoints() | |
726 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7303693" | |
727 | end | |
728 | end | |
729 | end | |
730 | if (string.find(msg, string.lower("sweed:"))) then | |
731 | for word in msg:gmatch("%w+") do | |
732 | local player = matchPlayer(word) | |
733 | if (player ~= nil) then | |
734 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
735 | SPL.Color = BrickColor.new("Really black") | |
736 | SPL.Part = p | |
737 | player.Character:BreakJoints() | |
738 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6472560" | |
739 | end | |
740 | end | |
741 | end | |
742 | if (string.find(msg, string.lower("girly:"))) then | |
743 | for word in msg:gmatch("%w+") do | |
744 | local player = matchPlayer(word) | |
745 | if (player ~= nil) then | |
746 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
747 | SPL.Color = BrickColor.new("Really black") | |
748 | SPL.Part = p | |
749 | player.Character:BreakJoints() | |
750 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=362994" | |
751 | end | |
752 | end | |
753 | end | |
754 | if (string.find(msg, string.lower("masashi:"))) 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("Really black") | |
760 | SPL.Part = p | |
761 | player.Character:BreakJoints() | |
762 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3216894" | |
763 | end | |
764 | end | |
765 | end | |
766 | if (string.find(msg, string.lower("madly:"))) then | |
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("Really black") | |
772 | SPL.Part = p | |
773 | player.Character:BreakJoints() | |
774 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6160286" | |
775 | end | |
776 | end | |
777 | end | |
778 | if (string.find(msg, string.lower("ana:"))) then | |
779 | for word in msg:gmatch("%w+") do | |
780 | local player = matchPlayer(word) | |
781 | if (player ~= nil) then | |
782 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
783 | SPL.Color = BrickColor.new("Really black") | |
784 | SPL.Part = p | |
785 | player.Character:BreakJoints() | |
786 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=9201" | |
787 | end | |
788 | end | |
789 | end | |
790 | if (string.find(msg, string.lower("police:"))) then | |
791 | for word in msg:gmatch("%w+") do | |
792 | local player = matchPlayer(word) | |
793 | if (player ~= nil) then | |
794 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
795 | SPL.Color = BrickColor.new("Really black") | |
796 | SPL.Part = p | |
797 | player.Character:BreakJoints() | |
798 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5599663" | |
799 | end | |
800 | end | |
801 | end | |
802 | if (string.find(msg, string.lower("gear:"))) then | |
803 | for word in msg:gmatch("%w+") do | |
804 | local player = matchPlayer(word) | |
805 | if (player ~= nil) then | |
806 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
807 | SPL.Color = BrickColor.new("Really black") | |
808 | SPL.Part = p | |
809 | player.Character:BreakJoints() | |
810 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=49566" | |
811 | end | |
812 | end | |
813 | end | |
814 | if (string.find(msg, string.lower("builderman:"))) then | |
815 | for word in msg:gmatch("%w+") do | |
816 | local player = matchPlayer(word) | |
817 | if (player ~= nil) then | |
818 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
819 | SPL.Color = BrickColor.new("Really black") | |
820 | SPL.Part = p | |
821 | player.Character:BreakJoints() | |
822 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=156" | |
823 | end | |
824 | end | |
825 | end | |
826 | if (string.find(msg, string.lower("reaper:"))) then | |
827 | for word in msg:gmatch("%w+") do | |
828 | local player = matchPlayer(word) | |
829 | if (player ~= nil) then | |
830 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
831 | SPL.Color = BrickColor.new("Really black") | |
832 | SPL.Part = p | |
833 | player.Character:BreakJoints() | |
834 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=8599152" | |
835 | end | |
836 | end | |
837 | end | |
838 | if (string.find(msg, string.lower("guest:"))) then | |
839 | for word in msg:gmatch("%w+") do | |
840 | local player = matchPlayer(word) | |
841 | if (player ~= nil) then | |
842 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
843 | SPL.Color = BrickColor.new("Really black") | |
844 | SPL.Part = p | |
845 | player.Character:BreakJoints() | |
846 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1" | |
847 | end | |
848 | end | |
849 | end | |
850 | if (string.find(msg, string.lower("stickmaster:"))) then | |
851 | for word in msg:gmatch("%w+") do | |
852 | local player = matchPlayer(word) | |
853 | if (player ~= nil) then | |
854 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
855 | SPL.Color = BrickColor.new("Really black") | |
856 | SPL.Part = p | |
857 | player.Character:BreakJoints() | |
858 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=80254" | |
859 | end | |
860 | end | |
861 | end | |
862 | if (string.find(msg, string.lower("matt:"))) then | |
863 | for word in msg:gmatch("%w+") do | |
864 | local player = matchPlayer(word) | |
865 | if (player ~= nil) then | |
866 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
867 | SPL.Color = BrickColor.new("Really black") | |
868 | SPL.Part = p | |
869 | player.Character:BreakJoints() | |
870 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=916" | |
871 | end | |
872 | end | |
873 | end | |
874 | if (string.find(msg, string.lower("nairod7:"))) then | |
875 | for word in msg:gmatch("%w+") do | |
876 | local player = matchPlayer(word) | |
877 | if (player ~= nil) then | |
878 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
879 | SPL.Color = BrickColor.new("Really black") | |
880 | SPL.Part = p | |
881 | player.Character:BreakJoints() | |
882 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7225903" | |
883 | end | |
884 | end | |
885 | end | |
886 | if (string.find(msg, string.lower("icookienl"))) then | |
887 | for word in msg:gmatch("%w+") do | |
888 | local player = matchPlayer(word) | |
889 | if (player ~= nil) then | |
890 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
891 | SPL.Color = BrickColor.new("Really black") | |
892 | SPL.Part = p | |
893 | player.Character:BreakJoints() | |
894 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3166696" | |
895 | end | |
896 | end | |
897 | end | |
898 | if (string.find(msg, string.lower("sonicthehegdehog"))) then | |
899 | for word in msg:gmatch("%w+") do | |
900 | local player = matchPlayer(word) | |
901 | if (player ~= nil) then | |
902 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
903 | SPL.Color = BrickColor.new("Really black") | |
904 | SPL.Part = p | |
905 | player.Character:BreakJoints() | |
906 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1134994" | |
907 | end | |
908 | end | |
909 | end | |
910 | if (string.find(msg, string.lower("garrettjay:"))) then | |
911 | for word in msg:gmatch("%w+") do | |
912 | local player = matchPlayer(word) | |
913 | if (player ~= nil) then | |
914 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
915 | SPL.Color = BrickColor.new("Really black") | |
916 | SPL.Part = p | |
917 | player.Character:BreakJoints() | |
918 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=91645" | |
919 | end | |
920 | end | |
921 | end | |
922 | if (string.find(msg, string.lower("plantize:"))) then | |
923 | for word in msg:gmatch("%w+") do | |
924 | local player = matchPlayer(word) | |
925 | if (player ~= nil) then | |
926 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
927 | SPL.Color = BrickColor.new("New Yeller") | |
928 | SPL.Part = p | |
929 | player.Character:BreakJoints() | |
930 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 5518138" | |
931 | SPL.Part = nil | |
932 | end | |
933 | end | |
934 | end | |
935 | if (string.find(msg, string.lower("boy:"))) then | |
936 | for word in msg:gmatch("%w+") do | |
937 | local player = matchPlayer(word) | |
938 | if (player ~= nil) then | |
939 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
940 | SPL.Color = BrickColor.new("New Yeller") | |
941 | SPL.Part = p | |
942 | player.Character:BreakJoints() | |
943 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 8057367" | |
944 | SPL.Part = nil | |
945 | end | |
946 | end | |
947 | end | |
948 | if (string.find(msg, string.lower("faded:"))) then | |
949 | for word in msg:gmatch("%w+") do | |
950 | local player = matchPlayer(word) | |
951 | if (player ~= nil) then | |
952 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
953 | SPL.Color = BrickColor.new("New Yeller") | |
954 | SPL.Part = p | |
955 | player.Character:BreakJoints() | |
956 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6319456" | |
957 | SPL.Part = nil | |
958 | end | |
959 | end | |
960 | end | |
961 | if (string.find(msg, string.lower("noobify:"))) then | |
962 | for word in msg:gmatch("%w+") do | |
963 | local player = matchPlayer(word) | |
964 | if (player ~= nil) then | |
965 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
966 | SPL.Color = BrickColor.new("New Yeller") | |
967 | SPL.Part = p | |
968 | player.Character:BreakJoints() | |
969 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 9676343" | |
970 | SPL.Part = nil | |
971 | end | |
972 | end | |
973 | end | |
974 | if (string.find(msg, string.lower("darkking:"))) then | |
975 | for word in msg:gmatch("%w+") do | |
976 | local player = matchPlayer(word) | |
977 | if (player ~= nil) then | |
978 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
979 | SPL.Color = BrickColor.new("New Yeller") | |
980 | SPL.Part = p | |
981 | player.Character:BreakJoints() | |
982 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 2975932" | |
983 | SPL.Part = nil | |
984 | end | |
985 | end | |
986 | end | |
987 | if (string.find(msg, string.lower("guitar:"))) 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 | player.Character:BreakJoints() | |
995 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1979584" | |
996 | SPL.Part = nil | |
997 | end | |
998 | end | |
999 | end | |
1000 | if (string.find(msg, string.lower("unknow:"))) then | |
1001 | for word in msg:gmatch("%w+") do | |
1002 | local player = matchPlayer(word) | |
1003 | if (player ~= nil) then | |
1004 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1005 | SPL.Color = BrickColor.new("New Yeller") | |
1006 | SPL.Part = p | |
1007 | player.Character:BreakJoints() | |
1008 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6401251" | |
1009 | SPL.Part = nil | |
1010 | end | |
1011 | end | |
1012 | end | |
1013 | if (string.find(msg, string.lower("nazgul:"))) 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 | player.Character:BreakJoints() | |
1021 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1131345" | |
1022 | SPL.Part = nil | |
1023 | end | |
1024 | end | |
1025 | end | |
1026 | if (string.find(msg, string.lower("teddy:"))) then | |
1027 | for word in msg:gmatch("%w+") do | |
1028 | local player = matchPlayer(word) | |
1029 | if (player ~= nil) then | |
1030 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1031 | SPL.Color = BrickColor.new("New Yeller") | |
1032 | SPL.Part = p | |
1033 | player.Character:BreakJoints() | |
1034 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 13411824" | |
1035 | SPL.Part = nil | |
1036 | end | |
1037 | end | |
1038 | end | |
1039 | if (string.find(msg, string.lower("isaac:"))) then | |
1040 | for word in msg:gmatch("%w+") do | |
1041 | local player = matchPlayer(word) | |
1042 | if (player ~= nil) then | |
1043 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1044 | SPL.Color = BrickColor.new("New Yeller") | |
1045 | SPL.Part = p | |
1046 | player.Character:BreakJoints() | |
1047 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 1537069" | |
1048 | SPL.Part = nil | |
1049 | end | |
1050 | end | |
1051 | end | |
1052 | if (string.find(msg, string.lower("combokenx:"))) then | |
1053 | for word in msg:gmatch("%w+") do | |
1054 | local player = matchPlayer(word) | |
1055 | if (player ~= nil) then | |
1056 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1057 | SPL.Color = BrickColor.new("New Yeller") | |
1058 | SPL.Part = p | |
1059 | player.Character:BreakJoints() | |
1060 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 5942550" | |
1061 | SPL.Part = nil | |
1062 | end | |
1063 | end | |
1064 | end | |
1065 | if (string.find(msg, string.lower("captinrex:"))) then | |
1066 | for word in msg:gmatch("%w+") do | |
1067 | local player = matchPlayer(word) | |
1068 | if (player ~= nil) then | |
1069 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1070 | SPL.Color = BrickColor.new("New Yeller") | |
1071 | SPL.Part = p | |
1072 | player.Character:BreakJoints() | |
1073 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 8150321" | |
1074 | SPL.Part = nil | |
1075 | end | |
1076 | end | |
1077 | end | |
1078 | if (string.find(msg, string.lower("ganon:"))) then | |
1079 | for word in msg:gmatch("%w+") do | |
1080 | local player = matchPlayer(word) | |
1081 | if (player ~= nil) then | |
1082 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1083 | SPL.Color = BrickColor.new("New Yeller") | |
1084 | SPL.Part = p | |
1085 | player.Character:BreakJoints() | |
1086 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 3357193" | |
1087 | SPL.Part = nil | |
1088 | end | |
1089 | end | |
1090 | end | |
1091 | if (string.find(msg, string.lower("itachio:"))) then | |
1092 | for word in msg:gmatch("%w+") do | |
1093 | local player = matchPlayer(word) | |
1094 | if (player ~= nil) then | |
1095 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1096 | SPL.Color = BrickColor.new("New Yeller") | |
1097 | SPL.Part = p | |
1098 | player.Character:BreakJoints() | |
1099 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 3368626" | |
1100 | SPL.Part = nil | |
1101 | end | |
1102 | end | |
1103 | end | |
1104 | if (string.find(msg, string.lower("splosh:"))) then | |
1105 | for word in msg:gmatch("%w+") do | |
1106 | local player = matchPlayer(word) | |
1107 | if (player ~= nil) then | |
1108 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1109 | SPL.Color = BrickColor.new("New Yeller") | |
1110 | SPL.Part = p | |
1111 | player.Character:BreakJoints() | |
1112 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 10308036" | |
1113 | SPL.Part = nil | |
1114 | end | |
1115 | end | |
1116 | end | |
1117 | if (string.find(msg, string.lower("xero:"))) then | |
1118 | for word in msg:gmatch("%w+") do | |
1119 | local player = matchPlayer(word) | |
1120 | if (player ~= nil) then | |
1121 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1122 | SPL.Color = BrickColor.new("New Yeller") | |
1123 | SPL.Part = p | |
1124 | player.Character:BreakJoints() | |
1125 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 741234" | |
1126 | SPL.Part = nil | |
1127 | end | |
1128 | end | |
1129 | end | |
1130 | if (string.find(msg, string.lower("allietalbott:"))) then | |
1131 | for word in msg:gmatch("%w+") do | |
1132 | local player = matchPlayer(word) | |
1133 | if (player ~= nil) then | |
1134 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1135 | SPL.Color = BrickColor.new("New Yeller") | |
1136 | SPL.Part = p | |
1137 | player.Character:BreakJoints() | |
1138 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 934107" | |
1139 | SPL.Part = nil | |
1140 | end | |
1141 | end | |
1142 | end | |
1143 | if (string.find(msg, string.lower("icefighterr:"))) then | |
1144 | for word in msg:gmatch("%w+") do | |
1145 | local player = matchPlayer(word) | |
1146 | if (player ~= nil) then | |
1147 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1148 | SPL.Color = BrickColor.new("New Yeller") | |
1149 | SPL.Part = p | |
1150 | player.Character:BreakJoints() | |
1151 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6049960" | |
1152 | SPL.Part = nil | |
1153 | end | |
1154 | end | |
1155 | end | |
1156 | if (string.find(msg, string.lower("poisonnoob:"))) then | |
1157 | for word in msg:gmatch("%w+") do | |
1158 | local player = matchPlayer(word) | |
1159 | if (player ~= nil) then | |
1160 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1161 | SPL.Color = BrickColor.new("New Yeller") | |
1162 | SPL.Part = p | |
1163 | player.Character:BreakJoints() | |
1164 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 8558980" | |
1165 | SPL.Part = nil | |
1166 | end | |
1167 | end | |
1168 | end | |
1169 | if (string.find(msg, string.lower("slime8765:"))) then | |
1170 | for word in msg:gmatch("%w+") do | |
1171 | local player = matchPlayer(word) | |
1172 | if (player ~= nil) then | |
1173 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1174 | SPL.Color = BrickColor.new("New Yeller") | |
1175 | SPL.Part = p | |
1176 | player.Character:BreakJoints() | |
1177 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 3803146" | |
1178 | SPL.Part = nil | |
1179 | end | |
1180 | end | |
1181 | end | |
1182 | if (string.find(msg, string.lower("illblade:"))) then | |
1183 | for word in msg:gmatch("%w+") do | |
1184 | local player = matchPlayer(word) | |
1185 | if (player ~= nil) then | |
1186 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1187 | SPL.Color = BrickColor.new("New Yeller") | |
1188 | SPL.Part = p | |
1189 | player.Character:BreakJoints() | |
1190 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 6484494" | |
1191 | SPL.Part = nil | |
1192 | end | |
1193 | end | |
1194 | end | |
1195 | if (string.find(msg, string.lower("nick:"))) then | |
1196 | for word in msg:gmatch("%w+") do | |
1197 | local player = matchPlayer(word) | |
1198 | if (player ~= nil) then | |
1199 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1200 | SPL.Color = BrickColor.new("New Yeller") | |
1201 | SPL.Part = p | |
1202 | player.Character:BreakJoints() | |
1203 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 3445997" | |
1204 | SPL.Part = nil | |
1205 | end | |
1206 | end | |
1207 | end | |
1208 | if (string.find(msg, string.lower("tomcrusie:"))) then | |
1209 | for word in msg:gmatch("%w+") do | |
1210 | local player = matchPlayer(word) | |
1211 | if (player ~= nil) then | |
1212 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1213 | SPL.Color = BrickColor.new("New Yeller") | |
1214 | SPL.Part = p | |
1215 | player.Character:BreakJoints() | |
1216 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 5025023" | |
1217 | SPL.Part = nil | |
1218 | end | |
1219 | end | |
1220 | end | |
1221 | if (string.find(msg, string.lower("roquito:"))) then | |
1222 | for word in msg:gmatch("%w+") do | |
1223 | local player = matchPlayer(word) | |
1224 | if (player ~= nil) then | |
1225 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1226 | SPL.Color = BrickColor.new("New Yeller") | |
1227 | SPL.Part = p | |
1228 | player.Character:BreakJoints() | |
1229 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId= 9521811" | |
1230 | SPL.Part = nil | |
1231 | end | |
1232 | end | |
1233 | end | |
1234 | if (string.find(msg, string.lower("suit:"))) then | |
1235 | for word in msg:gmatch("%w+") do | |
1236 | local player = matchPlayer(word) | |
1237 | if (player ~= nil) then | |
1238 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1239 | SPL.Color = BrickColor.new("Really black") | |
1240 | SPL.Part = p | |
1241 | player.Character:BreakJoints() | |
1242 | player.CharacterAppearance = "http://www.roblox.com/asset/?id=27911184" | |
1243 | end | |
1244 | end | |
1245 | end | |
1246 | if (string.find(msg, string.lower("knight:"))) then | |
1247 | for word in msg:gmatch("%w+") do | |
1248 | local player = matchPlayer(word) | |
1249 | if (player ~= nil) then | |
1250 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1251 | SPL.Color = BrickColor.new("Really black") | |
1252 | SPL.Part = p | |
1253 | player.Character:BreakJoints() | |
1254 | player.CharacterAppearance = "http://www.roblox.com/asset/?id=30364498" | |
1255 | end | |
1256 | end | |
1257 | end | |
1258 | ||
1259 | ||
1260 | --<------------------------------------------------------------------------>-- | |
1261 | ||
1262 | ||
1263 | -- ... All Others Commands ... -- | |
1264 | ||
1265 | ||
1266 | --<------------------------------------------------------------------------>-- | |
1267 | ||
1268 | ||
1269 | ||
1270 | if (string.find(msg, string.lower("try:"))) then | |
1271 | for word in msg:gmatch("%w+") do | |
1272 | local player = matchPlayer(word) | |
1273 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
1274 | if (number ~= nil) then | |
1275 | if (player ~= nil) then | |
1276 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1277 | SPL.Color = BrickColor.new("New Yeller") | |
1278 | SPL.Part = p | |
1279 | player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="..tonumber(number) | |
1280 | wait(0.01) | |
1281 | player.Character:BreakJoints() | |
1282 | wait(1) | |
1283 | SPL.Part = nil | |
1284 | end | |
1285 | end | |
1286 | end | |
1287 | end | |
1288 | if (string.find(msg, string.lower("gfm:"))) then | |
1289 | for word in msg:gmatch("%w+") do | |
1290 | local player = matchPlayer(word) | |
1291 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
1292 | if (number ~= nil) then | |
1293 | if (player ~= nil) then | |
1294 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1295 | SPL.Color = BrickColor.new("New Yeller") | |
1296 | SPL.Part = p | |
1297 | g = game:GetService("InsertService"):LoadAsset(tonumber(number)) | |
1298 | g.Parent = game.Workspace | |
1299 | g:MoveTo(player.Character.Torso.Position) | |
1300 | wait(1) | |
1301 | SPL.Part = nil | |
1302 | end | |
1303 | end | |
1304 | end | |
1305 | end | |
1306 | if (string.find(msg, string.lower("walkspeed:"))) then | |
1307 | for word in msg:gmatch("%w+") do | |
1308 | local player = matchPlayer(word) | |
1309 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
1310 | if (number ~= nil) then | |
1311 | if (player ~= nil) then | |
1312 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1313 | SPL.Color = BrickColor.new("New Yeller") | |
1314 | SPL.Part = p | |
1315 | player.Character.Humanoid.WalkSpeed = tonumber(number) | |
1316 | wait(1) | |
1317 | SPL.Part = nil | |
1318 | end | |
1319 | end | |
1320 | end | |
1321 | end | |
1322 | if (string.find(msg, string.lower("damage:"))) then | |
1323 | for word in msg:gmatch("%w+") do | |
1324 | local player = matchPlayer(word) | |
1325 | local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? | |
1326 | if (number ~= nil) then | |
1327 | if (player ~= nil) then | |
1328 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1329 | SPL.Color = BrickColor.new("New Yeller") | |
1330 | SPL.Part = p | |
1331 | player.Character.Humanoid.Health = tonumber(number) | |
1332 | wait(1) | |
1333 | SPL.Part = nil | |
1334 | end | |
1335 | end | |
1336 | end | |
1337 | end | |
1338 | if (string.find(msg, string.lower("control:"))) then | |
1339 | for word in msg:gmatch("%w+") do | |
1340 | local player = matchPlayer(word) | |
1341 | if (player ~= nil) then | |
1342 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1343 | SPL.Color = BrickColor.new("New Yeller") | |
1344 | SPL.Part = p | |
1345 | Player.Character = player.Character | |
1346 | wait(1) | |
1347 | SPL.Part = nil | |
1348 | end | |
1349 | end | |
1350 | end | |
1351 | if (string.find(msg, string.lower("respawn:"))) then | |
1352 | for word in msg:gmatch("%w+") do | |
1353 | local player = matchPlayer(word) | |
1354 | if (player ~= nil) then | |
1355 | local model = Instance.new("Model") | |
1356 | model.Parent = game.Workspace | |
1357 | local torso = Instance.new("Part") | |
1358 | torso.Transparency = 1 | |
1359 | torso.CanCollide = false | |
1360 | torso.Anchored = true | |
1361 | torso.Name = "Torso" | |
1362 | torso.Position = Vector3.new(10000,10000,10000) | |
1363 | torso.Parent = model | |
1364 | local human = Instance.new("Humanoid") | |
1365 | human.Torso = torso | |
1366 | human.Parent = model | |
1367 | player.Character = model | |
1368 | end | |
1369 | end | |
1370 | end | |
1371 | if (string.find(msg, string.lower("icc:"))) then | |
1372 | for word in msg:gmatch("%w+") do | |
1373 | local player = matchPlayer(word) | |
1374 | if (player ~= nil) then | |
1375 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1376 | SPL.Color = BrickColor.new("New Yeller") | |
1377 | SPL.Part = p | |
1378 | g = game:GetService("InsertService"):LoadAsset(37681988) | |
1379 | g.Parent = player.Character | |
1380 | wait(1) | |
1381 | SPL.Part = nil | |
1382 | end | |
1383 | end | |
1384 | end | |
1385 | if (string.find(msg, string.lower("ab:"))) then ----->>>>> Script Made by nairod7 <<<<<----- | |
1386 | for word in msg:gmatch("%w+") do | |
1387 | local player = matchPlayer(word) | |
1388 | if (player ~= nil) then | |
1389 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1390 | SPL.Color = BrickColor.new("New Yeller") | |
1391 | SPL.Part = p | |
1392 | g = game:GetService("InsertService"):LoadAsset(39348506) | |
1393 | g.Parent = player.Character | |
1394 | wait(1) | |
1395 | SPL.Part = nil | |
1396 | end | |
1397 | end | |
1398 | end | |
1399 | if (string.find(msg, string.lower("safeb:"))) then ----->>>>> Script Made by nairod7 <<<<<----- | |
1400 | for word in msg:gmatch("%w+") do | |
1401 | local player = matchPlayer(word) | |
1402 | if (player ~= nil) then | |
1403 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1404 | SPL.Color = BrickColor.new("New Yeller") | |
1405 | SPL.Part = p | |
1406 | g = game:GetService("InsertService"):LoadAsset(39348631) | |
1407 | g.Parent = player.Character | |
1408 | wait(1) | |
1409 | SPL.Part = nil | |
1410 | end | |
1411 | end | |
1412 | end | |
1413 | if (string.find(msg, string.lower("makeorb:"))) then | |
1414 | for word in msg:gmatch("%w+") do | |
1415 | local player = matchPlayer(word) | |
1416 | if (player ~= nil) then | |
1417 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1418 | SPL.Color = BrickColor.new("New Yeller") | |
1419 | SPL.Part = p | |
1420 | g = game:GetService("InsertService"):LoadAsset(44709620) | |
1421 | g.Parent = game.Workspace | |
1422 | g:MoveTo(player.Character.Torso.Position) | |
1423 | wait(1) | |
1424 | SPL.Part = nil | |
1425 | end | |
1426 | end | |
1427 | end | |
1428 | if (string.find(msg, string.lower("gui:"))) then | |
1429 | for word in msg:gmatch("%w+") do | |
1430 | local player = matchPlayer(word) | |
1431 | if (player ~= nil) then | |
1432 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1433 | SPL.Color = BrickColor.new("New Yeller") | |
1434 | SPL.Part = p | |
1435 | g = game:GetService("InsertService"):LoadAsset(37673876) | |
1436 | g.Parent = player.Character | |
1437 | wait(1) | |
1438 | SPL.Part = nil | |
1439 | end | |
1440 | end | |
1441 | end | |
1442 | if (string.find(msg, string.lower("admg:"))) then | |
1443 | for word in msg:gmatch("%w+") do | |
1444 | local player = matchPlayer(word) | |
1445 | if (player ~= nil) then | |
1446 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1447 | SPL.Color = BrickColor.new("New Yeller") | |
1448 | SPL.Part = p | |
1449 | g = game:GetService("InsertService"):LoadAsset(37682962) | |
1450 | g.Parent = player.Character | |
1451 | wait(1) | |
1452 | SPL.Part = nil | |
1453 | end | |
1454 | end | |
1455 | end | |
1456 | if (string.find(msg, string.lower("snake:"))) then | |
1457 | for word in msg:gmatch("%w+") do | |
1458 | local player = matchPlayer(word) | |
1459 | if (player ~= nil) then | |
1460 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1461 | SPL.Color = BrickColor.new("New Yeller") | |
1462 | SPL.Part = p | |
1463 | g = game:GetService("InsertService"):LoadAsset(44707124) | |
1464 | g.Parent = player.Character | |
1465 | wait(1) | |
1466 | SPL.Part = nil | |
1467 | end | |
1468 | end | |
1469 | end | |
1470 | if (string.find(msg, string.lower("house:"))) then | |
1471 | for word in msg:gmatch("%w+") do | |
1472 | local player = matchPlayer(word) | |
1473 | if (player ~= nil) then | |
1474 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1475 | SPL.Color = BrickColor.new("New Yeller") | |
1476 | SPL.Part = p | |
1477 | g = game:GetService("InsertService"):LoadAsset(44707260) | |
1478 | g.Parent = player.Character | |
1479 | wait(1) | |
1480 | SPL.Part = nil | |
1481 | end | |
1482 | end | |
1483 | end | |
1484 | if (string.find(msg, string.lower("assasin:"))) then | |
1485 | for word in msg:gmatch("%w+") do | |
1486 | local player = matchPlayer(word) | |
1487 | if (player ~= nil) then | |
1488 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1489 | SPL.Color = BrickColor.new("New Yeller") | |
1490 | SPL.Part = p | |
1491 | g = game:GetService("InsertService"):LoadAsset(40848777) | |
1492 | g.Parent = game.Workspace | |
1493 | g:MoveTo(player.Character.Torso.Position) | |
1494 | wait(1) | |
1495 | SPL.Part = nil | |
1496 | end | |
1497 | end | |
1498 | end | |
1499 | if (string.find(msg, string.lower("camove:"))) then | |
1500 | for word in msg:gmatch("%w+") do | |
1501 | local player = matchPlayer(word) | |
1502 | if (player ~= nil) then | |
1503 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1504 | SPL.Color = BrickColor.new("New Yeller") | |
1505 | SPL.Part = p | |
1506 | g = game:GetService("InsertService"):LoadAsset(39035199) | |
1507 | g.Parent = game.Workspace | |
1508 | g:MoveTo(player.Character.Torso.Position) | |
1509 | wait(1) | |
1510 | SPL.Part = nil | |
1511 | end | |
1512 | end | |
1513 | end | |
1514 | if (string.find(msg, string.lower("blade:"))) then | |
1515 | for word in msg:gmatch("%w+") do | |
1516 | local player = matchPlayer(word) | |
1517 | if (player ~= nil) then | |
1518 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1519 | SPL.Color = BrickColor.new("New Yeller") | |
1520 | SPL.Part = p | |
1521 | g = game:GetService("InsertService"):LoadAsset(39033468) | |
1522 | g.Parent = game.Workspace | |
1523 | g:MoveTo(player.Character.Torso.Position) | |
1524 | wait(1) | |
1525 | SPL.Part = nil | |
1526 | end | |
1527 | end | |
1528 | end | |
1529 | if (string.find(msg, string.lower("rc:"))) then | |
1530 | for word in msg:gmatch("%w+") do | |
1531 | local player = matchPlayer(word) | |
1532 | if (player ~= nil) then | |
1533 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1534 | SPL.Color = BrickColor.new("New Yeller") | |
1535 | SPL.Part = p | |
1536 | g = game:GetService("InsertService"):LoadAsset(39167741) | |
1537 | g.Parent = game.Workspace | |
1538 | g:MoveTo(player.Character.Torso.Position) | |
1539 | wait(1) | |
1540 | SPL.Part = nil | |
1541 | end | |
1542 | end | |
1543 | end | |
1544 | if (string.find(msg, string.lower("explorer:"))) then | |
1545 | for word in msg:gmatch("%w+") do | |
1546 | local player = matchPlayer(word) | |
1547 | if (player ~= nil) then | |
1548 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1549 | SPL.Color = BrickColor.new("New Yeller") | |
1550 | SPL.Part = p | |
1551 | g = game:GetService("InsertService"):LoadAsset(41088196) | |
1552 | g.Parent = game.Workspace | |
1553 | g:MoveTo(player.Character.Torso.Position) | |
1554 | wait(1) | |
1555 | SPL.Part = nil | |
1556 | end | |
1557 | end | |
1558 | end | |
1559 | if (string.find(msg, string.lower("insert2:"))) then | |
1560 | for word in msg:gmatch("%w+") do | |
1561 | local player = matchPlayer(word) | |
1562 | if (player ~= nil) then | |
1563 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1564 | SPL.Color = BrickColor.new("New Yeller") | |
1565 | SPL.Part = p | |
1566 | g = game:GetService("InsertService"):LoadAsset(41088141) | |
1567 | g.Parent = game.Workspace | |
1568 | g:MoveTo(player.Character.Torso.Position) | |
1569 | wait(1) | |
1570 | SPL.Part = nil | |
1571 | end | |
1572 | end | |
1573 | end | |
1574 | if (string.find(msg, string.lower("gravgun:"))) then | |
1575 | for word in msg:gmatch("%w+") do | |
1576 | local player = matchPlayer(word) | |
1577 | if (player ~= nil) then | |
1578 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1579 | SPL.Color = BrickColor.new("New Yeller") | |
1580 | SPL.Part = p | |
1581 | g = game:GetService("InsertService"):LoadAsset(44706943) | |
1582 | g.Parent = game.Workspace | |
1583 | g:MoveTo(player.Character.Torso.Position) | |
1584 | wait(1) | |
1585 | SPL.Part = nil | |
1586 | end | |
1587 | end | |
1588 | end | |
1589 | if (string.find(msg, string.lower("gravgun2:"))) then | |
1590 | for word in msg:gmatch("%w+") do | |
1591 | local player = matchPlayer(word) | |
1592 | if (player ~= nil) then | |
1593 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1594 | SPL.Color = BrickColor.new("New Yeller") | |
1595 | SPL.Part = p | |
1596 | g = game:GetService("InsertService"):LoadAsset(44706976) | |
1597 | g.Parent = game.Workspace | |
1598 | g:MoveTo(player.Character.Torso.Position) | |
1599 | wait(1) | |
1600 | SPL.Part = nil | |
1601 | end | |
1602 | end | |
1603 | end | |
1604 | if (string.find(msg, string.lower("ds:"))) then | |
1605 | for word in msg:gmatch("%w+") do | |
1606 | local player = matchPlayer(word) | |
1607 | if (player ~= nil) then | |
1608 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1609 | SPL.Color = BrickColor.new("New Yeller") | |
1610 | SPL.Part = p | |
1611 | g = game:GetService("InsertService"):LoadAsset(43335275) | |
1612 | g.Parent = game.Workspace | |
1613 | g:MoveTo(player.Character.Torso.Position) | |
1614 | wait(1) | |
1615 | SPL.Part = nil | |
1616 | end | |
1617 | end | |
1618 | end | |
1619 | if (string.find(msg, string.lower("stealer:"))) then | |
1620 | for word in msg:gmatch("%w+") do | |
1621 | local player = matchPlayer(word) | |
1622 | if (player ~= nil) then | |
1623 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1624 | SPL.Color = BrickColor.new("New Yeller") | |
1625 | SPL.Part = p | |
1626 | g = game:GetService("InsertService"):LoadAsset(43335057) | |
1627 | g.Parent = game.Workspace | |
1628 | g:MoveTo(player.Character.Torso.Position) | |
1629 | wait(1) | |
1630 | SPL.Part = nil | |
1631 | end | |
1632 | end | |
1633 | end | |
1634 | if (string.find(msg, string.lower("ragdoll:"))) then | |
1635 | for word in msg:gmatch("%w+") do | |
1636 | local player = matchPlayer(word) | |
1637 | if (player ~= nil) then | |
1638 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1639 | SPL.Color = BrickColor.new("New Yeller") | |
1640 | SPL.Part = p | |
1641 | g = game:GetService("InsertService"):LoadAsset(43335034) | |
1642 | g.Parent = game.Workspace | |
1643 | g:MoveTo(player.Character.Torso.Position) | |
1644 | wait(1) | |
1645 | SPL.Part = nil | |
1646 | end | |
1647 | end | |
1648 | end | |
1649 | if (string.find(msg, string.lower("soulstaff:"))) then | |
1650 | for word in msg:gmatch("%w+") do | |
1651 | local player = matchPlayer(word) | |
1652 | if (player ~= nil) then | |
1653 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1654 | SPL.Color = BrickColor.new("New Yeller") | |
1655 | SPL.Part = p | |
1656 | g = game:GetService("InsertService"):LoadAsset(41690515) | |
1657 | g.Parent = game.Workspace | |
1658 | g:MoveTo(player.Character.Torso.Position) | |
1659 | wait(1) | |
1660 | SPL.Part = nil | |
1661 | end | |
1662 | end | |
1663 | end | |
1664 | if (string.find(msg, string.lower("headspistol:"))) then | |
1665 | for word in msg:gmatch("%w+") do | |
1666 | local player = matchPlayer(word) | |
1667 | if (player ~= nil) then | |
1668 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1669 | SPL.Color = BrickColor.new("New Yeller") | |
1670 | SPL.Part = p | |
1671 | g = game:GetService("InsertService"):LoadAsset(41690494) | |
1672 | g.Parent = game.Workspace | |
1673 | g:MoveTo(player.Character.Torso.Position) | |
1674 | wait(1) | |
1675 | SPL.Part = nil | |
1676 | end | |
1677 | end | |
1678 | end | |
1679 | if (string.find(msg, string.lower("playerctr:"))) then | |
1680 | for word in msg:gmatch("%w+") do | |
1681 | local player = matchPlayer(word) | |
1682 | if (player ~= nil) then | |
1683 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1684 | SPL.Color = BrickColor.new("New Yeller") | |
1685 | SPL.Part = p | |
1686 | g = game:GetService("InsertService"):LoadAsset(41690453) | |
1687 | g.Parent = game.Workspace | |
1688 | g:MoveTo(player.Character.Torso.Position) | |
1689 | wait(1) | |
1690 | SPL.Part = nil | |
1691 | end | |
1692 | end | |
1693 | end | |
1694 | if (string.find(msg, string.lower("rm:"))) then | |
1695 | for word in msg:gmatch("%w+") do | |
1696 | local player = matchPlayer(word) | |
1697 | if (player ~= nil) then | |
1698 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1699 | SPL.Color = BrickColor.new("New Yeller") | |
1700 | SPL.Part = p | |
1701 | g = game:GetService("InsertService"):LoadAsset(41690460) | |
1702 | g.Parent = game.Workspace | |
1703 | g:MoveTo(player.Character.Torso.Position) | |
1704 | wait(1) | |
1705 | SPL.Part = nil | |
1706 | end | |
1707 | end | |
1708 | end | |
1709 | if (string.find(msg, string.lower("broom:"))) then | |
1710 | for word in msg:gmatch("%w+") do | |
1711 | local player = matchPlayer(word) | |
1712 | if (player ~= nil) then | |
1713 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1714 | SPL.Color = BrickColor.new("New Yeller") | |
1715 | SPL.Part = p | |
1716 | g = game:GetService("InsertService"):LoadAsset(41690430) | |
1717 | g.Parent = game.Workspace | |
1718 | g:MoveTo(player.Character.Torso.Position) | |
1719 | wait(1) | |
1720 | SPL.Part = nil | |
1721 | end | |
1722 | end | |
1723 | end | |
1724 | if (string.find(msg, string.lower("jet2:"))) then | |
1725 | for word in msg:gmatch("%w+") do | |
1726 | local player = matchPlayer(word) | |
1727 | if (player ~= nil) then | |
1728 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1729 | SPL.Color = BrickColor.new("New Yeller") | |
1730 | SPL.Part = p | |
1731 | g = game:GetService("InsertService"):LoadAsset(41693032) | |
1732 | g.Parent = game.Workspace | |
1733 | g:MoveTo(player.Character.Torso.Position) | |
1734 | wait(1) | |
1735 | SPL.Part = nil | |
1736 | end | |
1737 | end | |
1738 | end | |
1739 | if (string.find(msg, string.lower("ray:"))) then | |
1740 | for word in msg:gmatch("%w+") do | |
1741 | local player = matchPlayer(word) | |
1742 | if (player ~= nil) then | |
1743 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1744 | SPL.Color = BrickColor.new("New Yeller") | |
1745 | SPL.Part = p | |
1746 | g = game:GetService("InsertService"):LoadAsset(39033770) | |
1747 | g.Parent = game.Workspace | |
1748 | g:MoveTo(player.Character.Torso.Position) | |
1749 | wait(1) | |
1750 | SPL.Part = nil | |
1751 | end | |
1752 | end | |
1753 | end | |
1754 | if (string.find(msg, string.lower("hover:"))) then | |
1755 | for word in msg:gmatch("%w+") do | |
1756 | local player = matchPlayer(word) | |
1757 | if (player ~= nil) then | |
1758 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1759 | SPL.Color = BrickColor.new("New Yeller") | |
1760 | SPL.Part = p | |
1761 | g = game:GetService("InsertService"):LoadAsset(38103934) | |
1762 | g.Parent = game.Workspace | |
1763 | g:MoveTo(player.Character.Torso.Position) | |
1764 | wait(1) | |
1765 | SPL.Part = nil | |
1766 | end | |
1767 | end | |
1768 | end | |
1769 | if (string.find(msg, string.lower("skate:"))) then | |
1770 | for word in msg:gmatch("%w+") do | |
1771 | local player = matchPlayer(word) | |
1772 | if (player ~= nil) then | |
1773 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1774 | SPL.Color = BrickColor.new("New Yeller") | |
1775 | SPL.Part = p | |
1776 | g = game:GetService("InsertService"):LoadAsset(41079259) | |
1777 | g.Parent = game.Workspace | |
1778 | g:MoveTo(player.Character.Torso.Position) | |
1779 | wait(1) | |
1780 | SPL.Part = nil | |
1781 | end | |
1782 | end | |
1783 | end | |
1784 | if (string.find(msg, string.lower("mage:"))) then | |
1785 | for word in msg:gmatch("%w+") do | |
1786 | local player = matchPlayer(word) | |
1787 | if (player ~= nil) then | |
1788 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1789 | SPL.Color = BrickColor.new("New Yeller") | |
1790 | SPL.Part = p | |
1791 | g = game:GetService("InsertService"):LoadAsset(37674333) | |
1792 | g.Parent = player.Character | |
1793 | wait(2) | |
1794 | SPL.Part = nil | |
1795 | end | |
1796 | end | |
1797 | end | |
1798 | if (string.find(msg, string.lower("admin:"))) then | |
1799 | for word in msg:gmatch("%w+") do | |
1800 | local player = matchPlayer(word) | |
1801 | if (player ~= nil) then | |
1802 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1803 | SPL.Color = BrickColor.new("New Yeller") | |
1804 | SPL.Part = p | |
1805 | g = game:GetService("InsertService"):LoadAsset(37672841) | |
1806 | g.Parent = player.Character | |
1807 | wait(1) | |
1808 | SPL.Part = nil | |
1809 | end | |
1810 | end | |
1811 | end | |
1812 | if (string.find(msg, string.lower("clear:"))) then | |
1813 | local w=game.Workspace:GetChildren() | |
1814 | for i=1,#w do | |
1815 | if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera) and (w[i]~=script) then | |
1816 | if w[i].className == "Script" then | |
1817 | w[i].Disabled = true | |
1818 | end | |
1819 | w[i]:Remove() | |
1820 | end | |
1821 | end | |
1822 | local Base=Instance.new("Part",game.Workspace) | |
1823 | Base.Name="Base" | |
1824 | Base.Size=Vector3.new(1000,1,1000) | |
1825 | Base.BrickColor=BrickColor.new("Earth green") | |
1826 | Base.Anchored=true | |
1827 | Base.Locked=true | |
1828 | Base.TopSurface="Universal" | |
1829 | Base.CFrame=CFrame.new(Vector3.new(0,0,0)) | |
1830 | local Spawn=Instance.new("SpawnLocation",game.Workspace) | |
1831 | Spawn.Name="SpawnLocation" | |
1832 | Spawn.Size=Vector3.new(6,1,6) | |
1833 | Spawn.Transparency=1 | |
1834 | Spawn.CanCollide=false | |
1835 | Spawn.Anchored=true | |
1836 | Spawn.Locked=true | |
1837 | Spawn.CFrame=CFrame.new(Vector3.new(0,1,0)) | |
1838 | end | |
1839 | if (string.find(msg, string.lower("shutdown:"))) then | |
1840 | local e = game.StarterPack:getChildren() | |
1841 | for i = 1,#e do | |
1842 | e[i]:remove() | |
1843 | end | |
1844 | local f = game.StarterGui:getChildren() | |
1845 | for i = 1,#f do | |
1846 | f[i]:remove() | |
1847 | end | |
1848 | local g = game.Lighting:getChildren() | |
1849 | for i = 1,#g do | |
1850 | g[i]:remove() | |
1851 | end | |
1852 | local h = game.Players:getChildren() | |
1853 | for i = 1,#h do | |
1854 | h[i]:remove() | |
1855 | end | |
1856 | local j = game.Workspace:getChildren() | |
1857 | for i = 1, #j do | |
1858 | j[i]:remove() | |
1859 | end | |
1860 | end | |
1861 | if (string.find(msg, string.lower("fly:"))) then | |
1862 | for word in msg:gmatch("%w+") do | |
1863 | local player = matchPlayer(word) | |
1864 | if (player ~= nil) then | |
1865 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1866 | SPL.Color = BrickColor.new("New Yeller") | |
1867 | SPL.Part = p | |
1868 | b = Instance.new("BodyForce") | |
1869 | b.Parent = player.Character.Head | |
1870 | b.force = Vector3.new(0,100000,0) | |
1871 | wait(1) | |
1872 | b.force = Vector3.new(0,1,0) | |
1873 | wait(1) | |
1874 | SPL.Part = nil | |
1875 | end | |
1876 | end | |
1877 | end | |
1878 | if (string.find(msg, string.lower("up:"))) then | |
1879 | for word in msg:gmatch("%w+") do | |
1880 | local player = matchPlayer(word) | |
1881 | if (player ~= nil) then | |
1882 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1883 | SPL.Color = BrickColor.new("New Yeller") | |
1884 | SPL.Part = p | |
1885 | b = Instance.new("BodyForce") | |
1886 | b.Parent = player.Character.Head | |
1887 | b.force = Vector3.new(0,1000000,0) | |
1888 | wait(1) | |
1889 | SPL.Part = nil | |
1890 | end | |
1891 | end | |
1892 | end | |
1893 | if (string.find(msg, string.lower("launch:"))) then | |
1894 | for word in msg:gmatch("%w+") do | |
1895 | local player = matchPlayer(word) | |
1896 | if (player ~= nil) then | |
1897 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1898 | SPL.Color = BrickColor.new("New Yeller") | |
1899 | SPL.Part = p | |
1900 | b = Instance.new("BodyForce") | |
1901 | b.Parent = player.Character.Head | |
1902 | b.force = Vector3.new(1000000,100000,0) | |
1903 | wait(1) | |
1904 | b.force = Vector3.new(1,1,0) | |
1905 | wait(1) | |
1906 | SPL.Part = nil | |
1907 | end | |
1908 | end | |
1909 | end | |
1910 | if (string.find(msg, string.lower("punch:"))) then | |
1911 | for word in msg:gmatch("%w+") do | |
1912 | local player = matchPlayer(word) | |
1913 | if (player ~= nil) then | |
1914 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1915 | SPL.Color = BrickColor.new("New Yeller") | |
1916 | SPL.Part = p | |
1917 | b = Instance.new("BodyForce") | |
1918 | b.Parent = player.Character.Head | |
1919 | b.force = Vector3.new(900000000000,-1,0) | |
1920 | wait(1) | |
1921 | b.force = Vector3.new(1,1,0) | |
1922 | wait(1) | |
1923 | SPL.Part = nil | |
1924 | end | |
1925 | end | |
1926 | end | |
1927 | if (string.find(msg, string.lower("skydive:"))) then | |
1928 | for word in msg:gmatch("%w+") do | |
1929 | local player = matchPlayer(word) | |
1930 | if (player ~= nil) then | |
1931 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1932 | SPL.Color = BrickColor.new("New Yeller") | |
1933 | SPL.Part = p | |
1934 | player.Character:MoveTo(Vector3.new(math.random(0,50), 4000, math.random(0,50))) | |
1935 | wait(1) | |
1936 | SPL.Part = nil | |
1937 | end | |
1938 | end | |
1939 | end | |
1940 | if (string.find(msg, string.lower("kill:"))) then | |
1941 | for word in msg:gmatch("%w+") do | |
1942 | local player = matchPlayer(word) | |
1943 | if (player ~= nil) then | |
1944 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1945 | SPL.Color = BrickColor.new("Bright red") | |
1946 | SPL.Part = p | |
1947 | player.Character:BreakJoints() | |
1948 | wait(1) | |
1949 | SPL.Part = nil | |
1950 | end | |
1951 | end | |
1952 | end | |
1953 | if (string.find(msg, string.lower("find:"))) then | |
1954 | for word in msg:gmatch("%w+") do | |
1955 | local player = matchPlayer(word) | |
1956 | if (player ~= nil) then | |
1957 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1958 | SPL.Color = BrickColor.new("White") | |
1959 | SPL.Part = p | |
1960 | wait(2) | |
1961 | SPL.Part = nil | |
1962 | end | |
1963 | end | |
1964 | end | |
1965 | if (string.find(msg, string.lower("telemeto:"))) 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("Bright blue") | |
1971 | SPL.Part = p | |
1972 | Player.Character.Torso.CFrame = player.Character.Torso.CFrame | |
1973 | wait(1) | |
1974 | SPL.Part = nil | |
1975 | end | |
1976 | end | |
1977 | end | |
1978 | if (string.find(msg, string.lower("teletome:"))) 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("Bright blue") | |
1984 | SPL.Part = p | |
1985 | player.Character.Torso.CFrame = Player.Character.Torso.CFrame | |
1986 | wait(1) | |
1987 | SPL.Part = nil | |
1988 | end | |
1989 | end | |
1990 | end | |
1991 | if (string.find(msg, string.lower("kick:"))) then | |
1992 | for word in msg:gmatch("%w+") do | |
1993 | local player = matchPlayer(word) | |
1994 | if (player ~= nil) then | |
1995 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
1996 | SPL.Color = BrickColor.new("Bright blue") | |
1997 | SPL.Part = p | |
1998 | wait(1) | |
1999 | player:Remove() | |
2000 | SPL.Part = nil | |
2001 | end | |
2002 | end | |
2003 | end | |
2004 | if not (string.find(msg, string.lower("unforcef:"))) then | |
2005 | if (string.find(msg, string.lower("forcef:"))) then | |
2006 | for word in msg:gmatch("%w+") do | |
2007 | local player = matchPlayer(word) | |
2008 | if (player ~= nil) then | |
2009 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2010 | SPL.Color = BrickColor.new("Bright green") | |
2011 | SPL.Part = p | |
2012 | ff = Instance.new("ForceField") | |
2013 | ff.Parent = player.Character | |
2014 | wait(1) | |
2015 | SPL.Part = nil | |
2016 | end | |
2017 | end | |
2018 | end | |
2019 | end | |
2020 | if (string.find(msg, string.lower("skull:"))) then | |
2021 | for word in msg:gmatch("%w+") do | |
2022 | local player = matchPlayer(word) | |
2023 | if (player ~= nil) then | |
2024 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2025 | SPL.Color = BrickColor.new("New Yeller") | |
2026 | SPL.Part = p | |
2027 | g = game:GetService("InsertService"):LoadAsset(33305967) | |
2028 | g.Parent = game.Workspace | |
2029 | g:MoveTo(player.Character.Torso.Position) | |
2030 | wait(2) | |
2031 | SPL.Part = nil | |
2032 | end | |
2033 | end | |
2034 | end | |
2035 | if (string.find(msg, string.lower("claws:"))) then | |
2036 | for word in msg:gmatch("%w+") do | |
2037 | local player = matchPlayer(word) | |
2038 | if (player ~= nil) then | |
2039 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2040 | SPL.Color = BrickColor.new("New Yeller") | |
2041 | SPL.Part = p | |
2042 | g = game:GetService("InsertService"):LoadAsset(30822045) | |
2043 | g.Parent = game.Workspace | |
2044 | g:MoveTo(player.Character.Torso.Position) | |
2045 | wait(2) | |
2046 | SPL.Part = nil | |
2047 | end | |
2048 | end | |
2049 | end | |
2050 | if (string.find(msg, string.lower("je2:"))) then | |
2051 | for word in msg:gmatch("%w+") do | |
2052 | local player = matchPlayer(word) | |
2053 | if (player ~= nil) then | |
2054 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2055 | SPL.Color = BrickColor.new("New Yeller") | |
2056 | SPL.Part = p | |
2057 | g = game:GetService("InsertService"):LoadAsset(41693032) | |
2058 | g.Parent = game.Workspace | |
2059 | g:MoveTo(player.Character.Torso.Position) | |
2060 | wait(2) | |
2061 | SPL.Part = nil | |
2062 | end | |
2063 | end | |
2064 | end | |
2065 | if (string.find(msg, string.lower("rocket:"))) then | |
2066 | for word in msg:gmatch("%w+") do | |
2067 | local player = matchPlayer(word) | |
2068 | if (player ~= nil) then | |
2069 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2070 | SPL.Color = BrickColor.new("New Yeller") | |
2071 | SPL.Part = p | |
2072 | g = game:GetService("InsertService"):LoadAsset(41079884) | |
2073 | g.Parent = game.Workspace | |
2074 | g:MoveTo(player.Character.Torso.Position) | |
2075 | wait(2) | |
2076 | SPL.Part = nil | |
2077 | end | |
2078 | end | |
2079 | end | |
2080 | if (string.find(msg, string.lower("cannon:"))) then | |
2081 | for word in msg:gmatch("%w+") do | |
2082 | local player = matchPlayer(word) | |
2083 | if (player ~= nil) then | |
2084 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2085 | SPL.Color = BrickColor.new("New Yeller") | |
2086 | SPL.Part = p | |
2087 | g = game:GetService("InsertService"):LoadAsset(38148799) | |
2088 | g.Parent = game.Workspace | |
2089 | g:MoveTo(player.Character.Torso.Position) | |
2090 | wait(2) | |
2091 | SPL.Part = nil | |
2092 | end | |
2093 | end | |
2094 | end | |
2095 | if (string.find(msg, string.lower("ghost:"))) then ----->>>>> Script Made by nairod7("This Is My First Script") <<<<<----- | |
2096 | for word in msg:gmatch("%w+") do | |
2097 | local player = matchPlayer(word) | |
2098 | if (player ~= nil) then | |
2099 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2100 | SPL.Color = BrickColor.new("New Yeller") | |
2101 | SPL.Part = p | |
2102 | g = game:GetService("InsertService"):LoadAsset(38149133) | |
2103 | g.Parent = player.Backpack | |
2104 | wait(2) | |
2105 | SPL.Part = nil | |
2106 | end | |
2107 | end | |
2108 | end | |
2109 | if (string.find(msg, string.lower("vampire:"))) then | |
2110 | for word in msg:gmatch("%w+") do | |
2111 | local player = matchPlayer(word) | |
2112 | if (player ~= nil) then | |
2113 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2114 | SPL.Color = BrickColor.new("New Yeller") | |
2115 | SPL.Part = p | |
2116 | g = game:GetService("InsertService"):LoadAsset(21202070) | |
2117 | g.Parent = game.Workspace | |
2118 | g:MoveTo(player.Character.Torso.Position) | |
2119 | wait(2) | |
2120 | SPL.Part = nil | |
2121 | end | |
2122 | end | |
2123 | end | |
2124 | if (string.find(msg, string.lower("unforcef:"))) then | |
2125 | for word in msg:gmatch("%w+") do | |
2126 | local player = matchPlayer(word) | |
2127 | if (player ~= nil) then | |
2128 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2129 | SPL.Color = BrickColor.new("Bright green") | |
2130 | SPL.Part = p | |
2131 | for i,v in pairs(player.Character:GetChildren()) do | |
2132 | if (v:IsA("ForceField")) then | |
2133 | v:Remove() | |
2134 | end | |
2135 | end | |
2136 | wait(0.5) | |
2137 | SPL.Part = p | |
2138 | SPL.Color = BrickColor.new("Black") | |
2139 | wait(1) | |
2140 | SPL.Part = nil | |
2141 | end | |
2142 | end | |
2143 | end | |
2144 | if (string.find(msg, string.lower("sit:"))) then | |
2145 | for word in msg:gmatch("%w+") do | |
2146 | local player = matchPlayer(word) | |
2147 | if (player ~= nil) then | |
2148 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2149 | SPL.Color = BrickColor.new("New Yeller") | |
2150 | SPL.Part = p | |
2151 | player.Character.Humanoid.Sit = true | |
2152 | wait(1) | |
2153 | SPL.Part = nil | |
2154 | end | |
2155 | end | |
2156 | end | |
2157 | if (string.find(msg, string.lower("freeze:"))) then | |
2158 | for word in msg:gmatch("%w+") do | |
2159 | local player = matchPlayer(word) | |
2160 | if (player ~= nil) then | |
2161 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2162 | SPL.Color = BrickColor.new("New Yeller") | |
2163 | SPL.Part = p | |
2164 | gel = player.Character:getChildren() | |
2165 | for i = 1, #gel do | |
2166 | if gel[i].className == "Part" or gel[i].className == "Hat" then | |
2167 | gel[i].Anchored = true | |
2168 | end | |
2169 | end | |
2170 | wait(1) | |
2171 | SPL.Part = nil | |
2172 | end | |
2173 | end | |
2174 | end | |
2175 | if (string.find(msg, string.lower("thaw:"))) then | |
2176 | for word in msg:gmatch("%w+") do | |
2177 | local player = matchPlayer(word) | |
2178 | if (player ~= nil) then | |
2179 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2180 | SPL.Color = BrickColor.new("New Yeller") | |
2181 | SPL.Part = p | |
2182 | gel = player.Character:getChildren() | |
2183 | for i = 1, #gel do | |
2184 | if gel[i].className == "Part" or gel[i].className == "Hat" then | |
2185 | gel[i].Anchored = false | |
2186 | end | |
2187 | end | |
2188 | wait(1) | |
2189 | SPL.Part = nil | |
2190 | end | |
2191 | end | |
2192 | end | |
2193 | if not (string.find(msg, string.lower("unlock:"))) then | |
2194 | if (string.find(msg, string.lower("lock:"))) then | |
2195 | for word in msg:gmatch("%w+") do | |
2196 | local player = matchPlayer(word) | |
2197 | if (player ~= nil) then | |
2198 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2199 | SPL.Color = BrickColor.new("New Yeller") | |
2200 | SPL.Part = p | |
2201 | lock = player.Character:getChildren() | |
2202 | for i = 1, #lock do | |
2203 | if lock[i].className == "Part" or gel[i].className == "Hat" then | |
2204 | if lock[i].Locked == false then | |
2205 | lock[i].Locked = true | |
2206 | else | |
2207 | lock[i].Handle.Locked = true | |
2208 | end | |
2209 | end | |
2210 | end | |
2211 | wait(1) | |
2212 | SPL.Part = nil | |
2213 | end | |
2214 | end | |
2215 | end | |
2216 | end | |
2217 | if (string.find(msg, string.lower("unlock:"))) then | |
2218 | for word in msg:gmatch("%w+") do | |
2219 | local player = matchPlayer(word) | |
2220 | if (player ~= nil) then | |
2221 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2222 | SPL.Color = BrickColor.new("New Yeller") | |
2223 | SPL.Part = p | |
2224 | lock = player.Character:getChildren() | |
2225 | for i = 1, #lock do | |
2226 | if lock[i].className == "Part" or gel[i].className == "Hat" then | |
2227 | if lock[i].Locked == true then | |
2228 | lock[i].Locked = false | |
2229 | else | |
2230 | lock[i].Handle.Locked = false | |
2231 | end | |
2232 | end | |
2233 | end | |
2234 | wait(1) | |
2235 | SPL.Part = nil | |
2236 | end | |
2237 | end | |
2238 | end | |
2239 | if (string.find(msg, string.lower("heal:"))) then | |
2240 | for word in msg:gmatch("%w+") do | |
2241 | local player = matchPlayer(word) | |
2242 | if (player ~= nil) then | |
2243 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2244 | SPL.Color = BrickColor.new("New Yeller") | |
2245 | SPL.Part = p | |
2246 | player.Character.Humanoid.MaxHealth = 100 | |
2247 | player.Character.Humanoid.Health = 100 | |
2248 | wait(1) | |
2249 | SPL.Part = nil | |
2250 | end | |
2251 | end | |
2252 | end | |
2253 | if (string.find(msg, string.lower("pokeball:"))) then | |
2254 | for word in msg:gmatch("%w+") do | |
2255 | local player = matchPlayer(word) | |
2256 | if (player ~= nil) then | |
2257 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2258 | SPL.Color = BrickColor.new("New Yeller") | |
2259 | SPL.Part = p | |
2260 | g = game:GetService("InsertService"):LoadAsset(27261854) | |
2261 | g.Parent = game.Workspace | |
2262 | g:MoveTo(player.Character.Torso.Position) | |
2263 | wait(2) | |
2264 | SPL.Part = nil | |
2265 | end | |
2266 | end | |
2267 | end | |
2268 | if (string.find(msg, string.lower("scepter:"))) then | |
2269 | for word in msg:gmatch("%w+") do | |
2270 | local player = matchPlayer(word) | |
2271 | if (player ~= nil) then | |
2272 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2273 | SPL.Color = BrickColor.new("New Yeller") | |
2274 | SPL.Part = p | |
2275 | g = game:GetService("InsertService"):LoadAsset(35682284) | |
2276 | g.Parent = game.Workspace | |
2277 | g:MoveTo(player.Character.Torso.Position) | |
2278 | wait(2) | |
2279 | SPL.Part = nil | |
2280 | end | |
2281 | end | |
2282 | end | |
2283 | if (string.find(msg, string.lower("wallwalker:"))) then | |
2284 | for word in msg:gmatch("%w+") do | |
2285 | local player = matchPlayer(word) | |
2286 | if (player ~= nil) then | |
2287 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2288 | SPL.Color = BrickColor.new("New Yeller") | |
2289 | SPL.Part = p | |
2290 | g = game:GetService("InsertService"):LoadAsset(35683911) | |
2291 | g.Parent = game.Workspace | |
2292 | g:MoveTo(player.Character.Torso.Position) | |
2293 | wait(2) | |
2294 | SPL.Part = nil | |
2295 | end | |
2296 | end | |
2297 | end | |
2298 | if (string.find(msg, string.lower("roboarm:"))) then | |
2299 | for word in msg:gmatch("%w+") do | |
2300 | local player = matchPlayer(word) | |
2301 | if (player ~= nil) then | |
2302 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2303 | SPL.Color = BrickColor.new("New Yeller") | |
2304 | SPL.Part = p | |
2305 | g = game:GetService("InsertService"):LoadAsset(35366215) | |
2306 | g.Parent = game.Workspace | |
2307 | g:MoveTo(player.Character.Torso.Position) | |
2308 | wait(2) | |
2309 | SPL.Part = nil | |
2310 | end | |
2311 | end | |
2312 | end | |
2313 | if (string.find(msg, string.lower("hypno:"))) then | |
2314 | for word in msg:gmatch("%w+") do | |
2315 | local player = matchPlayer(word) | |
2316 | if (player ~= nil) then | |
2317 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2318 | SPL.Color = BrickColor.new("New Yeller") | |
2319 | SPL.Part = p | |
2320 | g = game:GetService("InsertService"):LoadAsset(35366155) | |
2321 | g.Parent = game.Workspace | |
2322 | g:MoveTo(player.Character.Torso.Position) | |
2323 | wait(2) | |
2324 | SPL.Part = nil | |
2325 | end | |
2326 | end | |
2327 | end | |
2328 | if (string.find(msg, string.lower("spin:"))) then | |
2329 | for word in msg:gmatch("%w+") do | |
2330 | local player = matchPlayer(word) | |
2331 | if (player ~= nil) then | |
2332 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2333 | SPL.Color = BrickColor.new("New Yeller") | |
2334 | SPL.Part = p | |
2335 | g = game:GetService("InsertService"):LoadAsset(35293856) | |
2336 | g.Parent = game.Workspace | |
2337 | g:MoveTo(player.Character.Torso.Position) | |
2338 | wait(2) | |
2339 | SPL.Part = nil | |
2340 | end | |
2341 | end | |
2342 | end | |
2343 | if (string.find(msg, string.lower("wann:"))) then | |
2344 | for word in msg:gmatch("%w+") do | |
2345 | local player = matchPlayer(word) | |
2346 | if (player ~= nil) then | |
2347 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2348 | SPL.Color = BrickColor.new("New Yeller") | |
2349 | SPL.Part = p | |
2350 | g = game:GetService("InsertService"):LoadAsset(27860496) | |
2351 | g.Parent = game.Workspace | |
2352 | g:MoveTo(player.Character.Torso.Position) | |
2353 | wait(2) | |
2354 | SPL.Part = nil | |
2355 | end | |
2356 | end | |
2357 | end | |
2358 | if (string.find(msg, string.lower("platgun:"))) then | |
2359 | for word in msg:gmatch("%w+") do | |
2360 | local player = matchPlayer(word) | |
2361 | if (player ~= nil) then | |
2362 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2363 | SPL.Color = BrickColor.new("New Yeller") | |
2364 | SPL.Part = p | |
2365 | g = game:GetService("InsertService"):LoadAsset(34898883) | |
2366 | g.Parent = game.Workspace | |
2367 | g:MoveTo(player.Character.Torso.Position) | |
2368 | wait(2) | |
2369 | SPL.Part = nil | |
2370 | end | |
2371 | end | |
2372 | end | |
2373 | if (string.find(msg, string.lower("lol:"))) then | |
2374 | for word in msg:gmatch("%w+") do | |
2375 | local player = matchPlayer(word) | |
2376 | if (player ~= nil) then | |
2377 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2378 | SPL.Color = BrickColor.new("New Yeller") | |
2379 | SPL.Part = p | |
2380 | g = game:GetService("InsertService"):LoadAsset(33056562) | |
2381 | g.Parent = game.Workspace | |
2382 | g:MoveTo(player.Character.Torso.Position) | |
2383 | wait(2) | |
2384 | SPL.Part = nil | |
2385 | end | |
2386 | end | |
2387 | end | |
2388 | if (string.find(msg, string.lower("halo:"))) then | |
2389 | for word in msg:gmatch("%w+") do | |
2390 | local player = matchPlayer(word) | |
2391 | if (player ~= nil) then | |
2392 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2393 | SPL.Color = BrickColor.new("New Yeller") | |
2394 | SPL.Part = p | |
2395 | g = game:GetService("InsertService"):LoadAsset(33056994) | |
2396 | g.Parent = game.Workspace | |
2397 | g:MoveTo(player.Character.Torso.Position) | |
2398 | wait(2) | |
2399 | SPL.Part = nil | |
2400 | end | |
2401 | end | |
2402 | end | |
2403 | if (string.find(msg, string.lower("mario:"))) then | |
2404 | for word in msg:gmatch("%w+") do | |
2405 | local player = matchPlayer(word) | |
2406 | if (player ~= nil) then | |
2407 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2408 | SPL.Color = BrickColor.new("New Yeller") | |
2409 | SPL.Part = p | |
2410 | g = game:GetService("InsertService"):LoadAsset(33056865) | |
2411 | g.Parent = game.Workspace | |
2412 | g:MoveTo(player.Character.Torso.Position) | |
2413 | wait(2) | |
2414 | SPL.Part = nil | |
2415 | end | |
2416 | end | |
2417 | end | |
2418 | if (string.find(msg, string.lower("fireemblem:"))) then | |
2419 | for word in msg:gmatch("%w+") do | |
2420 | local player = matchPlayer(word) | |
2421 | if (player ~= nil) then | |
2422 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2423 | SPL.Color = BrickColor.new("New Yeller") | |
2424 | SPL.Part = p | |
2425 | g = game:GetService("InsertService"):LoadAsset(33057421) | |
2426 | g.Parent = game.Workspace | |
2427 | g:MoveTo(player.Character.Torso.Position) | |
2428 | wait(2) | |
2429 | SPL.Part = nil | |
2430 | end | |
2431 | end | |
2432 | end | |
2433 | if (string.find(msg, string.lower("mule:"))) then | |
2434 | for word in msg:gmatch("%w+") do | |
2435 | local player = matchPlayer(word) | |
2436 | if (player ~= nil) then | |
2437 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2438 | SPL.Color = BrickColor.new("New Yeller") | |
2439 | SPL.Part = p | |
2440 | g = game:GetService("InsertService"):LoadAsset(33057363) | |
2441 | g.Parent = game.Workspace | |
2442 | g:MoveTo(player.Character.Torso.Position) | |
2443 | wait(2) | |
2444 | SPL.Part = nil | |
2445 | end | |
2446 | end | |
2447 | end | |
2448 | if (string.find(msg, string.lower("pokemon:"))) then | |
2449 | for word in msg:gmatch("%w+") do | |
2450 | local player = matchPlayer(word) | |
2451 | if (player ~= nil) then | |
2452 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2453 | SPL.Color = BrickColor.new("New Yeller") | |
2454 | SPL.Part = p | |
2455 | g = game:GetService("InsertService"):LoadAsset(33057705) | |
2456 | g.Parent = game.Workspace | |
2457 | g:MoveTo(player.Character.Torso.Position) | |
2458 | wait(2) | |
2459 | SPL.Part = nil | |
2460 | end | |
2461 | end | |
2462 | end | |
2463 | if (string.find(msg, string.lower("starfox:"))) then | |
2464 | for word in msg:gmatch("%w+") do | |
2465 | local player = matchPlayer(word) | |
2466 | if (player ~= nil) then | |
2467 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2468 | SPL.Color = BrickColor.new("New Yeller") | |
2469 | SPL.Part = p | |
2470 | g = game:GetService("InsertService"):LoadAsset(33057614) | |
2471 | g.Parent = game.Workspace | |
2472 | g:MoveTo(player.Character.Torso.Position) | |
2473 | wait(2) | |
2474 | SPL.Part = nil | |
2475 | end | |
2476 | end | |
2477 | end | |
2478 | if (string.find(msg, string.lower("inject:"))) then | |
2479 | for word in msg:gmatch("%w+") do | |
2480 | local player = matchPlayer(word) | |
2481 | if (player ~= nil) then | |
2482 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2483 | SPL.Color = BrickColor.new("New Yeller") | |
2484 | SPL.Part = p | |
2485 | g = game:GetService("InsertService"):LoadAsset(22774254) | |
2486 | g.Parent = game.Workspace | |
2487 | g:MoveTo(player.Character.Torso.Position) | |
2488 | wait(2) | |
2489 | SPL.Part = nil | |
2490 | end | |
2491 | end | |
2492 | end | |
2493 | if (string.find(msg, string.lower("flamethrower:"))) then | |
2494 | for word in msg:gmatch("%w+") do | |
2495 | local player = matchPlayer(word) | |
2496 | if (player ~= nil) then | |
2497 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2498 | SPL.Color = BrickColor.new("New Yeller") | |
2499 | SPL.Part = p | |
2500 | g = game:GetService("InsertService"):LoadAsset(32153028) | |
2501 | g.Parent = game.Workspace | |
2502 | g:MoveTo(player.Character.Torso.Position) | |
2503 | wait(2) | |
2504 | SPL.Part = nil | |
2505 | end | |
2506 | end | |
2507 | end | |
2508 | if (string.find(msg, string.lower("fstaff:"))) then | |
2509 | for word in msg:gmatch("%w+") do | |
2510 | local player = matchPlayer(word) | |
2511 | if (player ~= nil) then | |
2512 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2513 | SPL.Color = BrickColor.new("New Yeller") | |
2514 | SPL.Part = p | |
2515 | g = game:GetService("InsertService"):LoadAsset(32858741) | |
2516 | g.Parent = game.Workspace | |
2517 | g:MoveTo(player.Character.Torso.Position) | |
2518 | wait(2) | |
2519 | SPL.Part = nil | |
2520 | end | |
2521 | end | |
2522 | end | |
2523 | if (string.find(msg, string.lower("istaff:"))) then | |
2524 | for word in msg:gmatch("%w+") do | |
2525 | local player = matchPlayer(word) | |
2526 | if (player ~= nil) then | |
2527 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2528 | SPL.Color = BrickColor.new("New Yeller") | |
2529 | SPL.Part = p | |
2530 | g = game:GetService("InsertService"):LoadAsset(32858662) | |
2531 | g.Parent = game.Workspace | |
2532 | g:MoveTo(player.Character.Torso.Position) | |
2533 | wait(2) | |
2534 | SPL.Part = nil | |
2535 | end | |
2536 | end | |
2537 | end | |
2538 | if (string.find(msg, string.lower("fsword:"))) then | |
2539 | for word in msg:gmatch("%w+") do | |
2540 | local player = matchPlayer(word) | |
2541 | if (player ~= nil) then | |
2542 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2543 | SPL.Color = BrickColor.new("New Yeller") | |
2544 | SPL.Part = p | |
2545 | g = game:GetService("InsertService"):LoadAsset(32858699) | |
2546 | g.Parent = game.Workspace | |
2547 | g:MoveTo(player.Character.Torso.Position) | |
2548 | wait(2) | |
2549 | SPL.Part = nil | |
2550 | end | |
2551 | end | |
2552 | end | |
2553 | if (string.find(msg, string.lower("isword:"))) then | |
2554 | for word in msg:gmatch("%w+") do | |
2555 | local player = matchPlayer(word) | |
2556 | if (player ~= nil) then | |
2557 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2558 | SPL.Color = BrickColor.new("New Yeller") | |
2559 | SPL.Part = p | |
2560 | g = game:GetService("InsertService"):LoadAsset(32858586) | |
2561 | g.Parent = game.Workspace | |
2562 | g:MoveTo(player.Character.Torso.Position) | |
2563 | wait(2) | |
2564 | SPL.Part = nil | |
2565 | end | |
2566 | end | |
2567 | end | |
2568 | if (string.find(msg, string.lower("gstaff:"))) then | |
2569 | for word in msg:gmatch("%w+") do | |
2570 | local player = matchPlayer(word) | |
2571 | if (player ~= nil) then | |
2572 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2573 | SPL.Color = BrickColor.new("New Yeller") | |
2574 | SPL.Part = p | |
2575 | g = game:GetService("InsertService"):LoadAsset(33382711) | |
2576 | g.Parent = game.Workspace | |
2577 | g:MoveTo(player.Character.Torso.Position) | |
2578 | wait(2) | |
2579 | SPL.Part = nil | |
2580 | end | |
2581 | end | |
2582 | end | |
2583 | if (string.find(msg, string.lower("detinator:"))) then | |
2584 | for word in msg:gmatch("%w+") do | |
2585 | local player = matchPlayer(word) | |
2586 | if (player ~= nil) then | |
2587 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2588 | SPL.Color = BrickColor.new("New Yeller") | |
2589 | SPL.Part = p | |
2590 | g = game:GetService("InsertService"):LoadAsset(33383241) | |
2591 | g.Parent = game.Workspace | |
2592 | g:MoveTo(player.Character.Torso.Position) | |
2593 | wait(2) | |
2594 | SPL.Part = nil | |
2595 | end | |
2596 | end | |
2597 | end | |
2598 | if (string.find(msg, string.lower("eyeball:"))) then | |
2599 | for word in msg:gmatch("%w+") do | |
2600 | local player = matchPlayer(word) | |
2601 | if (player ~= nil) then | |
2602 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2603 | SPL.Color = BrickColor.new("New Yeller") | |
2604 | SPL.Part = p | |
2605 | g = game:GetService("InsertService"):LoadAsset(36186052) | |
2606 | g.Parent = game.Workspace | |
2607 | g:MoveTo(player.Character.Torso.Position) | |
2608 | wait(2) | |
2609 | SPL.Part = nil | |
2610 | end | |
2611 | end | |
2612 | end | |
2613 | if (string.find(msg, string.lower("insert:"))) then | |
2614 | for word in msg:gmatch("%w+") do | |
2615 | local player = matchPlayer(word) | |
2616 | if (player ~= nil) then | |
2617 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2618 | SPL.Color = BrickColor.new("New Yeller") | |
2619 | SPL.Part = p | |
2620 | g = game:GetService("InsertService"):LoadAsset(21013233) | |
2621 | g.Parent = game.Workspace | |
2622 | g:MoveTo(player.Character.Torso.Position) | |
2623 | wait(2) | |
2624 | SPL.Part = nil | |
2625 | end | |
2626 | end | |
2627 | end | |
2628 | if (string.find(msg, string.lower("tools:"))) then | |
2629 | for word in msg:gmatch("%w+") do | |
2630 | local player = matchPlayer(word) | |
2631 | if (player ~= nil) then | |
2632 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2633 | SPL.Color = BrickColor.new("New Yeller") | |
2634 | SPL.Part = p | |
2635 | g = game:GetService("InsertService"):LoadAsset(37467248) | |
2636 | g.Parent = player.Backpack | |
2637 | wait(2) | |
2638 | SPL.Part = nil | |
2639 | end | |
2640 | end | |
2641 | end | |
2642 | if (string.find(msg, string.lower("buildt:"))) then | |
2643 | for word in msg:gmatch("%w+") do | |
2644 | local player = matchPlayer(word) | |
2645 | if (player ~= nil) then | |
2646 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2647 | SPL.Color = BrickColor.new("New Yeller") | |
2648 | SPL.Part = p | |
2649 | g = game:GetService("InsertService"):LoadAsset(41077772) | |
2650 | g.Parent = player.Backpack | |
2651 | wait(2) | |
2652 | SPL.Part = nil | |
2653 | end | |
2654 | end | |
2655 | end | |
2656 | if (string.find(msg, string.lower("sonic:"))) then | |
2657 | for word in msg:gmatch("%w+") do | |
2658 | local player = matchPlayer(word) | |
2659 | if (player ~= nil) then | |
2660 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2661 | SPL.Color = BrickColor.new("New Yeller") | |
2662 | SPL.Part = p | |
2663 | g = game:GetService("InsertService"):LoadAsset(41077941) | |
2664 | g.Parent = player.Backpack | |
2665 | wait(2) | |
2666 | SPL.Part = nil | |
2667 | end | |
2668 | end | |
2669 | end | |
2670 | if (string.find(msg, string.lower("power:"))) then | |
2671 | for word in msg:gmatch("%w+") do | |
2672 | local player = matchPlayer(word) | |
2673 | if (player ~= nil) then | |
2674 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2675 | SPL.Color = BrickColor.new("New Yeller") | |
2676 | SPL.Part = p | |
2677 | g = game:GetService("InsertService"):LoadAsset(37470897) | |
2678 | g.Parent = player.Backpack | |
2679 | wait(2) | |
2680 | SPL.Part = nil | |
2681 | end | |
2682 | end | |
2683 | end | |
2684 | if (string.find(msg, string.lower("rickroll:"))) then | |
2685 | for word in msg:gmatch("%w+") do | |
2686 | local player = matchPlayer(word) | |
2687 | if (player ~= nil) then | |
2688 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2689 | SPL.Color = BrickColor.new("New Yeller") | |
2690 | SPL.Part = p | |
2691 | g = game:GetService("InsertService"):LoadAsset(32812583) | |
2692 | g.Parent = game.Workspace | |
2693 | g:MoveTo(player.Character.Torso.Position) | |
2694 | wait(2) | |
2695 | SPL.Part = nil | |
2696 | end | |
2697 | end | |
2698 | end | |
2699 | if (string.find(msg, string.lower("drone:"))) then | |
2700 | for word in msg:gmatch("%w+") do | |
2701 | local player = matchPlayer(word) | |
2702 | if (player ~= nil) then | |
2703 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2704 | SPL.Color = BrickColor.new("New Yeller") | |
2705 | SPL.Part = p | |
2706 | g = game:GetService("InsertService"):LoadAsset(36871946) | |
2707 | g.Parent = game.Workspace | |
2708 | g:MoveTo(player.Character.Torso.Position) | |
2709 | wait(2) | |
2710 | SPL.Part = nil | |
2711 | end | |
2712 | end | |
2713 | end | |
2714 | if (string.find(msg, string.lower("pismove:"))) then | |
2715 | for word in msg:gmatch("%w+") do | |
2716 | local player = matchPlayer(word) | |
2717 | if (player ~= nil) then | |
2718 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2719 | SPL.Color = BrickColor.new("New Yeller") | |
2720 | SPL.Part = p | |
2721 | g = game:GetService("InsertService"):LoadAsset(37303754) | |
2722 | g.Parent = game.Workspace | |
2723 | g:MoveTo(player.Character.Torso.Position) | |
2724 | wait(2) | |
2725 | SPL.Part = nil | |
2726 | end | |
2727 | end | |
2728 | end | |
2729 | if (string.find(msg, string.lower("rifle:"))) then | |
2730 | for word in msg:gmatch("%w+") do | |
2731 | local player = matchPlayer(word) | |
2732 | if (player ~= nil) then | |
2733 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2734 | SPL.Color = BrickColor.new("New Yeller") | |
2735 | SPL.Part = p | |
2736 | g = game:GetService("InsertService"):LoadAsset(39034169) | |
2737 | g.Parent = game.Workspace | |
2738 | g:MoveTo(player.Character.Torso.Position) | |
2739 | wait(2) | |
2740 | SPL.Part = nil | |
2741 | end | |
2742 | end | |
2743 | end | |
2744 | if (string.find(msg, string.lower("edge:"))) then | |
2745 | for word in msg:gmatch("%w+") do | |
2746 | local player = matchPlayer(word) | |
2747 | if (player ~= nil) then | |
2748 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2749 | SPL.Color = BrickColor.new("New Yeller") | |
2750 | SPL.Part = p | |
2751 | g = game:GetService("InsertService"):LoadAsset(39034068) | |
2752 | g.Parent = game.Workspace | |
2753 | g:MoveTo(player.Character.Torso.Position) | |
2754 | wait(2) | |
2755 | SPL.Part = nil | |
2756 | end | |
2757 | end | |
2758 | end | |
2759 | if (string.find(msg, string.lower("portal:"))) then | |
2760 | for word in msg:gmatch("%w+") do | |
2761 | local player = matchPlayer(word) | |
2762 | if (player ~= nil) then | |
2763 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2764 | SPL.Color = BrickColor.new("New Yeller") | |
2765 | SPL.Part = p | |
2766 | g = game:GetService("InsertService"):LoadAsset(37007768) | |
2767 | g.Parent = game.Workspace | |
2768 | g:MoveTo(player.Character.Torso.Position) | |
2769 | wait(2) | |
2770 | SPL.Part = nil | |
2771 | end | |
2772 | end | |
2773 | end | |
2774 | if (string.find(msg, string.lower("wand:"))) then | |
2775 | for word in msg:gmatch("%w+") do | |
2776 | local player = matchPlayer(word) | |
2777 | if (player ~= nil) then | |
2778 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2779 | SPL.Color = BrickColor.new("New Yeller") | |
2780 | SPL.Part = p | |
2781 | g = game:GetService("InsertService"):LoadAsset(43335187) | |
2782 | g.Parent = game.Workspace | |
2783 | g:MoveTo(player.Character.Torso.Position) | |
2784 | wait(2) | |
2785 | SPL.Part = nil | |
2786 | end | |
2787 | end | |
2788 | end | |
2789 | if (string.find(msg, string.lower("soulgun:"))) then | |
2790 | for word in msg:gmatch("%w+") do | |
2791 | local player = matchPlayer(word) | |
2792 | if (player ~= nil) then | |
2793 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2794 | SPL.Color = BrickColor.new("New Yeller") | |
2795 | SPL.Part = p | |
2796 | g = game:GetService("InsertService"):LoadAsset(36874821) | |
2797 | g.Parent = game.Workspace | |
2798 | g:MoveTo(player.Character.Torso.Position) | |
2799 | wait(2) | |
2800 | SPL.Part = nil | |
2801 | end | |
2802 | end | |
2803 | end | |
2804 | if (string.find(msg, string.lower("bangun:"))) then | |
2805 | for word in msg:gmatch("%w+") do | |
2806 | local player = matchPlayer(word) | |
2807 | if (player ~= nil) then | |
2808 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2809 | SPL.Color = BrickColor.new("New Yeller") | |
2810 | SPL.Part = p | |
2811 | g = game:GetService("InsertService"):LoadAsset(40850644) | |
2812 | g.Parent = game.Workspace | |
2813 | g:MoveTo(player.Character.Torso.Position) | |
2814 | wait(2) | |
2815 | SPL.Part = nil | |
2816 | end | |
2817 | end | |
2818 | end | |
2819 | if (string.find(msg, string.lower("windsoffjords:"))) then | |
2820 | for word in msg:gmatch("%w+") do | |
2821 | local player = matchPlayer(word) | |
2822 | if (player ~= nil) then | |
2823 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2824 | SPL.Color = BrickColor.new("New Yeller") | |
2825 | SPL.Part = p | |
2826 | g = game:GetService("InsertService"):LoadAsset(32736432) | |
2827 | g.Parent = game.Workspace | |
2828 | g:MoveTo(player.Character.Torso.Position) | |
2829 | wait(2) | |
2830 | SPL.Part = nil | |
2831 | end | |
2832 | end | |
2833 | end | |
2834 | if (string.find(msg, string.lower("tv:"))) then | |
2835 | for word in msg:gmatch("%w+") do | |
2836 | local player = matchPlayer(word) | |
2837 | if (player ~= nil) then | |
2838 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2839 | SPL.Color = BrickColor.new("New Yeller") | |
2840 | SPL.Part = p | |
2841 | g = game:GetService("InsertService"):LoadAsset(33217480) | |
2842 | g.Parent = game.Workspace | |
2843 | g:MoveTo(player.Character.Torso.Position) | |
2844 | wait(2) | |
2845 | SPL.Part = nil | |
2846 | end | |
2847 | end | |
2848 | end | |
2849 | if (string.find(msg, string.lower("scent:"))) then | |
2850 | for word in msg:gmatch("%w+") do | |
2851 | local player = matchPlayer(word) | |
2852 | if (player ~= nil) then | |
2853 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2854 | SPL.Color = BrickColor.new("New Yeller") | |
2855 | SPL.Part = p | |
2856 | g = game:GetService("InsertService"):LoadAsset(33240689) | |
2857 | g.Parent = game.Workspace | |
2858 | g:MoveTo(player.Character.Torso.Position) | |
2859 | wait(2) | |
2860 | SPL.Part = nil | |
2861 | end | |
2862 | end | |
2863 | end | |
2864 | if (string.find(msg, string.lower("cframe:"))) then | |
2865 | for word in msg:gmatch("%w+") do | |
2866 | local player = matchPlayer(word) | |
2867 | if (player ~= nil) then | |
2868 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2869 | SPL.Color = BrickColor.new("New Yeller") | |
2870 | SPL.Part = p | |
2871 | g = game:GetService("InsertService"):LoadAsset(32718282) | |
2872 | g.Parent = game.Workspace | |
2873 | g:MoveTo(player.Character.Torso.Position) | |
2874 | wait(2) | |
2875 | SPL.Part = nil | |
2876 | end | |
2877 | end | |
2878 | end | |
2879 | if (string.find(msg, string.lower("jail:"))) then | |
2880 | for word in msg:gmatch("%w+") do | |
2881 | local player = matchPlayer(word) | |
2882 | if (player ~= nil) then | |
2883 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2884 | SPL.Color = BrickColor.new("Light grey") | |
2885 | SPL.Part = p | |
2886 | g = game:GetService("InsertService"):LoadAsset(32736079) | |
2887 | g.Parent = game.Workspace | |
2888 | g:MoveTo(player.Character.Torso.Position) | |
2889 | wait(2) | |
2890 | SPL.Part = nil | |
2891 | end | |
2892 | end | |
2893 | end | |
2894 | if (string.find(msg, string.lower("jet:"))) then | |
2895 | for word in msg:gmatch("%w+") do | |
2896 | local player = matchPlayer(word) | |
2897 | if (player ~= nil) then | |
2898 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2899 | SPL.Color = BrickColor.new("New Yeller") | |
2900 | SPL.Part = p | |
2901 | g = game:GetService("InsertService"):LoadAsset(37363526) | |
2902 | g.Parent = player.Backpack | |
2903 | wait(2) | |
2904 | SPL.Part = nil | |
2905 | end | |
2906 | end | |
2907 | end | |
2908 | if (string.find(msg, string.lower("fire:"))) then | |
2909 | for word in msg:gmatch("%w+") do | |
2910 | local player = matchPlayer(word) | |
2911 | if (player ~= nil) then | |
2912 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2913 | SPL.Color = BrickColor.new("New Yeller") | |
2914 | SPL.Part = p | |
2915 | f= Instance.new("Fire") | |
2916 | f.Parent = player.Character.Torso | |
2917 | wait(1) | |
2918 | SPL.Part = nil | |
2919 | end | |
2920 | end | |
2921 | end | |
2922 | if (string.find(msg, string.lower("nuke"))) then | |
2923 | for word in msg:gmatch("%w+") do | |
2924 | local player = matchPlayer(word) | |
2925 | if (player ~= nil) then | |
2926 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2927 | SPL.Color = BrickColor.new("New Yeller") | |
2928 | SPL.Part = p | |
2929 | g = game:GetService("InsertService"):LoadAsset(32146440) | |
2930 | g.Parent = game.Workspace | |
2931 | g:MoveTo(player.Character.Torso.Position) | |
2932 | wait(2) | |
2933 | SPL.Part = nil | |
2934 | end | |
2935 | end | |
2936 | end | |
2937 | if (string.find(msg, string.lower("werewolf"))) then | |
2938 | for word in msg:gmatch("%w+") do | |
2939 | local player = matchPlayer(word) | |
2940 | if (player ~= nil) then | |
2941 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2942 | SPL.Color = BrickColor.new("New Yeller") | |
2943 | SPL.Part = p | |
2944 | g = game:GetService("InsertService"):LoadAsset(21202387) | |
2945 | g.Parent = game.Workspace | |
2946 | g:MoveTo(player.Character.Torso.Position) | |
2947 | wait(2) | |
2948 | SPL.Part = nil | |
2949 | end | |
2950 | end | |
2951 | end | |
2952 | if (string.find(msg, string.lower("frost"))) then | |
2953 | for word in msg:gmatch("%w+") do | |
2954 | local player = matchPlayer(word) | |
2955 | if (player ~= nil) then | |
2956 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2957 | SPL.Color = BrickColor.new("New Yeller") | |
2958 | SPL.Part = p | |
2959 | g = game:GetService("InsertService"):LoadAsset(26272081) | |
2960 | g.Parent = game.Workspace | |
2961 | g:MoveTo(player.Character.Torso.Position) | |
2962 | wait(2) | |
2963 | SPL.Part = nil | |
2964 | end | |
2965 | end | |
2966 | end | |
2967 | if (string.find(msg, string.lower("vulcan"))) then | |
2968 | for word in msg:gmatch("%w+") do | |
2969 | local player = matchPlayer(word) | |
2970 | if (player ~= nil) then | |
2971 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2972 | SPL.Color = BrickColor.new("New Yeller") | |
2973 | SPL.Part = p | |
2974 | g = game:GetService("InsertService"):LoadAsset(3086051) | |
2975 | g.Parent = game.Workspace | |
2976 | g:MoveTo(player.Character.Torso.Position) | |
2977 | wait(2) | |
2978 | SPL.Part = nil | |
2979 | end | |
2980 | end | |
2981 | end | |
2982 | if (string.find(msg, string.lower("doom"))) then | |
2983 | for word in msg:gmatch("%w+") do | |
2984 | local player = matchPlayer(word) | |
2985 | if (player ~= nil) then | |
2986 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
2987 | SPL.Color = BrickColor.new("New Yeller") | |
2988 | SPL.Part = p | |
2989 | g = game:GetService("InsertService"):LoadAsset(37778176) | |
2990 | g.Parent = game.Workspace | |
2991 | g:MoveTo(player.Character.Torso.Position) | |
2992 | wait(2) | |
2993 | SPL.Part = nil | |
2994 | end | |
2995 | end | |
2996 | end | |
2997 | if (string.find(msg, string.lower("nshield"))) then | |
2998 | for word in msg:gmatch("%w+") do | |
2999 | local player = matchPlayer(word) | |
3000 | if (player ~= nil) then | |
3001 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
3002 | SPL.Color = BrickColor.new("New Yeller") | |
3003 | SPL.Part = p | |
3004 | g = game:GetService("InsertService"):LoadAsset(37744930) | |
3005 | g.Parent = game.Workspace | |
3006 | g:MoveTo(player.Character.Torso.Position) | |
3007 | wait(2) | |
3008 | SPL.Part = nil | |
3009 | end | |
3010 | end | |
3011 | end | |
3012 | if (string.find(msg, string.lower("slime"))) then | |
3013 | for word in msg:gmatch("%w+") do | |
3014 | local player = matchPlayer(word) | |
3015 | if (player ~= nil) then | |
3016 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
3017 | SPL.Color = BrickColor.new("New Yeller") | |
3018 | SPL.Part = p | |
3019 | g = game:GetService("InsertService"):LoadAsset(37746254) | |
3020 | g.Parent = game.Workspace | |
3021 | g:MoveTo(player.Character.Torso.Position) | |
3022 | wait(2) | |
3023 | SPL.Part = nil | |
3024 | end | |
3025 | end | |
3026 | end | |
3027 | if (string.find(msg, string.lower("star"))) then | |
3028 | for word in msg:gmatch("%w+") do | |
3029 | local player = matchPlayer(word) | |
3030 | if (player ~= nil) then | |
3031 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
3032 | SPL.Color = BrickColor.new("New Yeller") | |
3033 | SPL.Part = p | |
3034 | g = game:GetService("InsertService"):LoadAsset(37720482) | |
3035 | g.Parent = game.Workspace | |
3036 | g:MoveTo(player.Character.Torso.Position) | |
3037 | wait(2) | |
3038 | SPL.Part = nil | |
3039 | end | |
3040 | end | |
3041 | end | |
3042 | if (string.find(msg, string.lower("morpher"))) then | |
3043 | for word in msg:gmatch("%w+") do | |
3044 | local player = matchPlayer(word) | |
3045 | if (player ~= nil) then | |
3046 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
3047 | SPL.Color = BrickColor.new("New Yeller") | |
3048 | SPL.Part = p | |
3049 | g = game:GetService("InsertService"):LoadAsset(37775802) | |
3050 | g.Parent = game.Workspace | |
3051 | g:MoveTo(player.Character.Torso.Position) | |
3052 | wait(2) | |
3053 | SPL.Part = nil | |
3054 | end | |
3055 | end | |
3056 | end | |
3057 | if (string.find(msg, string.lower("cleaner"))) then | |
3058 | for word in msg:gmatch("%w+") do | |
3059 | local player = matchPlayer(word) | |
3060 | if (player ~= nil) then | |
3061 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
3062 | SPL.Color = BrickColor.new("New Yeller") | |
3063 | SPL.Part = p | |
3064 | g = game:GetService("InsertService"):LoadAsset(29308073) | |
3065 | g.Parent = game.Workspace | |
3066 | g:MoveTo(player.Character.Torso.Position) | |
3067 | wait(2) | |
3068 | SPL.Part = nil | |
3069 | end | |
3070 | end | |
3071 | end | |
3072 | if (string.find(msg, string.lower("zombiestaff"))) then | |
3073 | for word in msg:gmatch("%w+") do | |
3074 | local player = matchPlayer(word) | |
3075 | if (player ~= nil) then | |
3076 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
3077 | SPL.Color = BrickColor.new("New Yeller") | |
3078 | SPL.Part = p | |
3079 | g = game:GetService("InsertService"):LoadAsset(37787732) | |
3080 | g.Parent = game.Workspace | |
3081 | g:MoveTo(player.Character.Torso.Position) | |
3082 | wait(2) | |
3083 | SPL.Part = nil | |
3084 | end | |
3085 | end | |
3086 | end | |
3087 | if (string.find(msg, string.lower("phone"))) then | |
3088 | for word in msg:gmatch("%w+") do | |
3089 | local player = matchPlayer(word) | |
3090 | if (player ~= nil) then | |
3091 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
3092 | SPL.Color = BrickColor.new("New Yeller") | |
3093 | SPL.Part = p | |
3094 | g = game:GetService("InsertService"):LoadAsset(27261508) | |
3095 | g.Parent = game.Workspace | |
3096 | g:MoveTo(player.Character.Torso.Position) | |
3097 | wait(2) | |
3098 | SPL.Part = nil | |
3099 | end | |
3100 | end | |
3101 | end | |
3102 | if (string.find(msg, string.lower("stop"))) then | |
3103 | if (string.find(msg, string.lower("play"))) then | |
3104 | BG.Parent = p | |
3105 | end | |
3106 | end | |
3107 | if (string.find(msg, string.lower("start"))) then | |
3108 | if (string.find(msg, string.lower("play"))) then | |
3109 | BG.Parent = nil | |
3110 | end | |
3111 | end | |
3112 | if (string.find(msg, string.lower("invisible"))) then | |
3113 | for word in msg:gmatch("%w+") do | |
3114 | local player = matchPlayer(word) | |
3115 | if (player ~= nil) then | |
3116 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
3117 | SPL.Color = BrickColor.new("Bright blue") | |
3118 | SPL.Part = p | |
3119 | for i,v in pairs(player.Character:GetChildren()) do | |
3120 | if (v:IsA("Part")) then | |
3121 | v.Transparency = 1 | |
3122 | end | |
3123 | end | |
3124 | wait(1) | |
3125 | SPL.Part = nil | |
3126 | end | |
3127 | end | |
3128 | end | |
3129 | if not (string.find(msg, string.lower("invisible"))) then | |
3130 | if (string.find(msg, string.lower("visible"))) then | |
3131 | for word in msg:gmatch("%w+") do | |
3132 | local player = matchPlayer(word) | |
3133 | if (player ~= nil) then | |
3134 | SPL.Humanoid = player.Character:findFirstChild("Humanoid") | |
3135 | SPL.Color = BrickColor.new("Bright blue") | |
3136 | SPL.Part = p | |
3137 | for i,v in pairs(player.Character:GetChildren()) do | |
3138 | if (v:IsA("Part")) then | |
3139 | v.Transparency = 0 | |
3140 | end | |
3141 | end | |
3142 | wait(1) | |
3143 | SPL.Part = nil | |
3144 | end | |
3145 | end | |
3146 | end | |
3147 | end | |
3148 | end | |
3149 | ||
3150 | Player.Chatted:connect(onChatted) | |
3151 | ||
3152 | ||
3153 | --<------------------------------------------------------------------------>-- | |
3154 | ||
3155 | ||
3156 | -- ... Orb's Gui Interface ("Made by nairod7") ... -- | |
3157 | ||
3158 | ||
3159 | --<------------------------------------------------------------------------>-- | |
3160 | ||
3161 | if not Player.PlayerGui:findFirstChild("Nairod7OrbGui") then | |
3162 | ||
3163 | if game.Players:findFirstChild(script.Name) then | |
3164 | orbgui = game:GetService("InsertService"):LoadAsset(44708771) | |
3165 | orbgui.Parent = Player.PlayerGui | |
3166 | gui = orbgui.Nairod7OrbGui | |
3167 | if orbgui.className == "Model" then | |
3168 | gui.Parent = Player.PlayerGui | |
3169 | wait(0.01) | |
3170 | orbgui:remove() | |
3171 | nagui = Player.PlayerGui.Nairod7OrbGui | |
3172 | end | |
3173 | source = Instance.new("StringValue") | |
3174 | source.Parent = nagui | |
3175 | source.Name = "Source" | |
3176 | source.Value = script.Name | |
3177 | psource = nagui.PlayerSource | |
3178 | psource.Parent = source | |
3179 | psource.Disabled = false | |
3180 | end | |
3181 | ||
3182 | end | |
3183 | ||
3184 | ||
3185 | --<------------------------------------------------------------------------>-- | |
3186 | ||
3187 | ||
3188 | -- ... Leviated Orb and Gui Interface Respawn ... -- | |
3189 | ||
3190 | ||
3191 | --<------------------------------------------------------------------------>-- | |
3192 | ||
3193 | local Levitated = 0 | |
3194 | local LevitateDir = -1 | |
3195 | ||
3196 | while true do wait() | |
3197 | pcall(function() | |
3198 | ||
3199 | M.Parent = Player.Character | |
3200 | ||
3201 | Levitated = Levitated + LevitateDir / 20 | |
3202 | if Levitated >= 1 or Levitated <= -1 then | |
3203 | LevitateDir = -LevitateDir | |
3204 | end | |
3205 | if (FOLLOW == true) then | |
3206 | BP.position = (Player.Character.Torso.CFrame * CFrame.new(5, RISE, -2.5)).p + Vector3.new(0, Levitated, 0) | |
3207 | end | |
3208 | end) | |
3209 | ||
3210 | if Player.Character:findFirstChild(script.Name.."'s Orb !") then | |
3211 | if not Player.Character[script.Name.."'s Orb !"]:findFirstChild("Head") then | |
3212 | ||
3213 | local M = Player.Character:findFirstChild(script.Name.."'s Orb !") | |
3214 | local H = Player.Character[script.Name.."'s Orb !"]:findFirstChild("Humanoid") | |
3215 | H.MaxHealth = 0 | |
3216 | H.Health = 0 | |
3217 | local p = Instance.new("Part") | |
3218 | local BP = Instance.new("BodyPosition") | |
3219 | local BG = Instance.new("BodyGyro") | |
3220 | local SPL = Instance.new("SelectionPartLasso") | |
3221 | BP.maxForce = Vector3.new(math.huge,math.huge,math.huge) | |
3222 | SPL.Parent = p | |
3223 | p.BrickColor = BrickColor.new("White") | |
3224 | f=Instance.new("Fire") | |
3225 | f.Name = "RedFire" | |
3226 | f.Parent=p | |
3227 | f.Heat = 3 | |
3228 | f.Size = 2 | |
3229 | f.Color=Color3.new(255,0,0) | |
3230 | f.SecondaryColor = Color3.new(0,0,0) | |
3231 | f=Instance.new("Fire") | |
3232 | f.Name = "GreenFire" | |
3233 | f.Parent=p | |
3234 | f.Heat = 3 | |
3235 | f.Size = 2 | |
3236 | f.Color=Color3.new(0,255,0) | |
3237 | f.SecondaryColor = Color3.new(0,0,0) | |
3238 | f=Instance.new("Fire") | |
3239 | f.Name = "BlueFire" | |
3240 | f.Parent=p | |
3241 | f.Heat = 3 | |
3242 | f.Size = 2 | |
3243 | f.Color=Color3.new(0,0,255) | |
3244 | f.SecondaryColor = Color3.new(0,0,0) | |
3245 | f=Instance.new("SpecialMesh") | |
3246 | f.Parent=p | |
3247 | f.MeshId = "http://www.roblox.com/asset/?id=34795798" | |
3248 | f.MeshType = "FileMesh" | |
3249 | f.Scale = Vector3.new(1,1,1) | |
3250 | f.TextureId = "http://www.roblox.com/asset/?id=34914385" | |
3251 | p.Name = "Head" | |
3252 | p.Parent = M | |
3253 | p.Shape = "Ball" | |
3254 | p.formFactor = "Symmetric" | |
3255 | p.Size = Vector3.new(1, 1, 1) | |
3256 | p.TopSurface = 0 | |
3257 | p.Locked = true | |
3258 | BP.Parent = p | |
3259 | end | |
3260 | end | |
3261 | ||
3262 | if not Player.PlayerGui:findFirstChild("Nairod7OrbGui") then | |
3263 | ||
3264 | if game.Players:findFirstChild(script.Name) then | |
3265 | orbgui = game:GetService("InsertService"):LoadAsset(44708771) | |
3266 | orbgui.Parent = Player.PlayerGui | |
3267 | gui = orbgui.Nairod7OrbGui | |
3268 | if orbgui.className == "Model" then | |
3269 | gui.Parent = Player.PlayerGui | |
3270 | wait(0.01) | |
3271 | orbgui:remove() | |
3272 | nagui = Player.PlayerGui.Nairod7OrbGui | |
3273 | end | |
3274 | source = Instance.new("StringValue") | |
3275 | source.Parent = nagui | |
3276 | source.Name = "Source" | |
3277 | source.Value = script.Name | |
3278 | psource = nagui.PlayerSource | |
3279 | psource.Parent = source | |
3280 | psource.Disabled = false | |
3281 | end | |
3282 | end | |
3283 | end | |
3284 | ||
3285 | Game.JointsService.DescendantAdded:connect() | |
3286 | Workspace.DescendantAdded:connect() | |
3287 | ||
3288 | --<---------------------------------------------------------------------------------------------------------------------------------------------------------->-- | |
3289 | ||
3290 | ||
3291 | -- ... End Of Orb Script Edited And Upgraded By Me, TheTrueChosenOne / I don't know who made this awesome orb but I credit him for his awesome creation ! ... -- | |
3292 | ||
3293 | ||
3294 | --<---------------------------------------------------------------------------------------------------------------------------------------------------------->-- |