View difference between Paste ID: 3KGzs46x and ZRe3Ma93
SHOW: | | - or go back to the newest paste.
1
local Settings={["Un_Removable"]= "On"}
2
local function mFloor(x) return x - x % 1 end
3
local Un_Removable = tostring(Settings["Un_Removable"]):lower() == "on"
4
if Un_Removable then
5
	Game.Workspace.DescendantRemoving:connect(function(Child)
6
		if not Remove_At_Will and Child == script then
7
			script:Clone().Parent = Game.Workspace
8
		end
9
end)
10
end
11
12-
local Owners = "xxxGhostxxxx","nobodymania","rinorboy2 ","robuxman13" 
12+
local Owners = "YoungHobbitBoy","SmokeDelsin","rinorboy2 ","robuxman13" 
13
local Player = game.Players:findFirstChild(Owners) 
14
15
--[[
16
17
Informations :
18
19
You can change the name of your orb in line 84 and change the owners to the orb in line 12
20
Say orb, the command and name for example : orb, kill na ( na = nairod7 )
21
22
kill playername
23
find playername
24
ff playername
25
unff playername
26
admin playername ( you need change the id in line 733 by your admin command id ! )
27
claws playername
28
skull playername
29
rocket playername
30
clear playername
31
vampire playername
32
pokeball playername
33
insert playername
34
eyeball playername
35
invisible playername
36
visible playername
37
power playername
38
rickroll playername
39
kick playername
40
ban playername
41
detinator playername
42
fstaff playername
43
istaff playername
44
gstaff playername
45
fsword playername
46
isword playername
47
clear playername
48
mdebug playername ( remove message )
49
flamethrower playername
50
shutdown playername ( shutdown the server )
51
fire playername
52
green fire playername
53
white playername
54
suit playername ( you have tool with him )
55
tele playername ( teleport yourself from a other player )
56
57
apparence command :
58
59
builderman playername
60
telamon playername
61
matt playername
62
guest playername
63
girly playername
64
ducc playername
65
sweed playername
66
wierdo playername
67
gear playername
68
police playername
69
madly playername
70
ana playername
71
masashi playername
72
73
]]--
74
local RISE = 5 
75
local FOLLOW = true 
76
local M = Instance.new("Model") 
77
local H = Instance.new("Humanoid") 
78
M.Parent = Player.Character 
79
H.Parent = M 
80
H.MaxHealth = 0 
81
H.Health = 0 
82
M.Name = "Orb" 
83
local p = Instance.new("Part") 
84
local BP = Instance.new("BodyPosition") 
85
local BG = Instance.new("BodyGyro") 
86
local SPL = Instance.new("SelectionPartLasso") 
87
BP.maxForce = Vector3.new(math.huge,math.huge,math.huge) 
88
SPL.Parent = p 
89
p.BrickColor = BrickColor.new("Really red") 
90
f=Instance.new("Fire")
91
f.Parent=p 
92
f.Heat = 0
93
f.Size = 2.5
94
f.Color=Color3.new(255,0,0) 
95
f.SecondaryColor = Color3.new(0,0,0) 
96
f=Instance.new("Fire")
97
f.Parent=p 
98
f.Heat = 0
99
f.Size = 2.5
100
f.Color=Color3.new(0,255,0) 
101
f.SecondaryColor = Color3.new(0,0,0) 
102
f=Instance.new("Fire")
103
f.Parent=p 
104
f.Heat = 0
105
f.Size = 2.5
106
f.Color=Color3.new(0,0,255) 
107
f.SecondaryColor = Color3.new(0,0,0) 
108
f=Instance.new("SpecialMesh")
109
f.Parent=p 
110
f.MeshId = "http://www.roblox.com/asset/?id=34795798"
111
f.MeshType = "FileMesh"
112
f.Scale = Vector3.new(1.3,1.3,1.3)
113
f.TextureId = "http://www.roblox.com/asset/?id=34795697"
114
p.Name = "Head" 
115
p.Parent = M 
116
p.Shape = "Ball" 
117
p.formFactor = "Symmetric" 
118
p.Size = Vector3.new(1, 1, 1) 
119
p.TopSurface = 0 
120
p.BottomSurface = 0 
121
BP.Parent = p 
122
123
function matchPlayer(str) 
124
local result = nil 
125
local players = game.Players:GetPlayers() 
126
for i,v in pairs(game.Players:GetPlayers()) do 
127
if (string.find(string.lower(v.Name), str) == 1) then 
128
if (result ~= nil) then return nil end 
129
result = v 
130
end 
131
end 
132
return result 
133
end 
134
135
136
137
function onChatted(msg) 
138
139
if (string.sub(msg, 1, 4) == "orb,") then 
140
if (string.find(msg, string.lower("reset"))) then 
141
for word in msg:gmatch("%w+") do 
142
local player = matchPlayer(word) 
143
if (player ~= nil) then 
144
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
145
SPL.Color = BrickColor.new("Bright red") 
146
SPL.Part = p 
147
player.Character:BreakJoints() 
148
wait(1) 
149
SPL.Part = nil 
150
end 
151
end 
152
end 
153
if not (string.find(msg, string.lower("loopkill"))) then 
154
if (string.find(msg, string.lower("kill"))) then 
155
for word in msg:gmatch("%w+") do 
156
local player = matchPlayer(word) 
157
if (player ~= nil) then 
158
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
159
SPL.Color = BrickColor.new("Bright red") 
160
SPL.Part = p 
161
player.Character:BreakJoints() 
162
wait(1) 
163
SPL.Part = nil 
164
end 
165
end 
166
end 
167
end 
168
if (string.find(msg, string.lower("find"))) then 
169
for word in msg:gmatch("%w+") do 
170
local player = matchPlayer(word) 
171
if (player ~= nil) then 
172
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
173
SPL.Color = BrickColor.new("White") 
174
SPL.Part = p 
175
wait(2) 
176
SPL.Part = nil 
177
end 
178
end 
179
end 
180
if (string.find(msg, string.lower("tele"))) then 
181
for word in msg:gmatch("%w+") do 
182
local player = matchPlayer(word) 
183
if (player ~= nil) then 
184
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
185
SPL.Color = BrickColor.new("Bright blue") 
186
SPL.Part = p 
187
Player.Character.Torso.CFrame = player.Character.Torso.CFrame 
188
wait(1) 
189
SPL.Part = nil 
190
end 
191
end 
192
end 
193
if (string.find(msg, string.lower("trans"))) then 
194
local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? 
195
if (number ~= nil) then 
196
p.Transparency = tonumber(number) 
197
end 
198
end 
199
if (string.find(msg, string.lower("size"))) then 
200
local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? 
201
if (number ~= nil) then 
202
p.Size = Vector3.new(tonumber(number),tonumber(number),tonumber(number)) 
203
end 
204
end 
205
if (string.find(msg, string.lower("loopkill"))) then 
206
local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? 
207
if (number ~= nil) then 
208
for word in msg:gmatch("%w+") do 
209
local player = matchPlayer(word) 
210
if (player ~= nil) then 
211
K = 0 
212
repeat 
213
if (player.Character:findFirstChild("Humanoid").Health > 0) then 
214
wait() 
215
if (player.Character:findFirstChild("Torso") ~= nil) then 
216
wait() 
217
if (player.Character ~= nil) then 
218
wait() 
219
K = K + 1 
220
player.Character:BreakJoints() 
221
end 
222
end 
223
end 
224
wait() 
225
until tonumber(K) == tonumber(number) 
226
K = 0 
227
end 
228
end 
229
end 
230
end 
231
if (string.find(msg, string.lower("rise"))) then 
232
local number = msg:match("[%d%.]+") --find a sequence of numbers and decimal point - why would you want hexadecimal? 
233
if (number ~= nil) then 
234
RISE = tostring(number + 5) 
235
end 
236
end 
237
if not (string.find(msg, string.lower("unff"))) then 
238
if (string.find(msg, string.lower("ff"))) then 
239
for word in msg:gmatch("%w+") do 
240
local player = matchPlayer(word) 
241
if (player ~= nil) then 
242
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
243
SPL.Color = BrickColor.new("Bright green") 
244
SPL.Part = p 
245
ff = Instance.new("ForceField") 
246
ff.Parent = player.Character 
247
wait(1) 
248
SPL.Part = nil 
249
end 
250
end 
251
end 
252
end 
253
if (string.find(msg, string.lower("skull"))) then 
254
for word in msg:gmatch("%w+") do 
255
local player = matchPlayer(word) 
256
if (player ~= nil) then 
257
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
258
SPL.Color = BrickColor.new("New Yeller") 
259
SPL.Part = p 
260
g = game:GetService("InsertService"):LoadAsset(33305967) 
261
g.Parent = game.Workspace 
262
g:MoveTo(player.Character.Torso.Position) 
263
wait(2) 
264
SPL.Part = nil 
265
end 
266
end 
267
end 
268
if (string.find(msg, string.lower("claws"))) then 
269
for word in msg:gmatch("%w+") do 
270
local player = matchPlayer(word) 
271
if (player ~= nil) then 
272
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
273
SPL.Color = BrickColor.new("New Yeller") 
274
SPL.Part = p 
275
g = game:GetService("InsertService"):LoadAsset(30822045) 
276
g.Parent = game.Workspace 
277
g:MoveTo(player.Character.Torso.Position) 
278
wait(2) 
279
SPL.Part = nil 
280
end 
281
end 
282
end 
283
if (string.find(msg, string.lower("rocket"))) then 
284
for word in msg:gmatch("%w+") do 
285
local player = matchPlayer(word) 
286
if (player ~= nil) then 
287
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
288
SPL.Color = BrickColor.new("New Yeller") 
289
SPL.Part = p 
290
g = game:GetService("InsertService"):LoadAsset(3675058) 
291
g.Parent = game.Workspace 
292
g:MoveTo(player.Character.Torso.Position) 
293
wait(2) 
294
SPL.Part = nil 
295
end 
296
end 
297
end 
298
if (string.find(msg, string.lower("clear"))) then 
299
for word in msg:gmatch("%w+") do 
300
local player = matchPlayer(word) 
301
if (player ~= nil) then 
302
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
303
SPL.Color = BrickColor.new("New Yeller") 
304
SPL.Part = p 
305
local w=game.Workspace:GetChildren() 
306
for i=1,#w do 
307
if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera) then 
308
w[i]:Remove() 
309
end 
310
end 
311
local Base=Instance.new("Part",game.Workspace) 
312
Base.Name="Base" 
313
Base.Size=Vector3.new(600,1,600) 
314
Base.BrickColor=BrickColor.new("Earth green") 
315
Base.Anchored=true 
316
Base.Locked=true 
317
Base.TopSurface="Universal" 
318
Base.CFrame=CFrame.new(Vector3.new(0,0,0)) 
319
end 
320
wait(2) 
321
SPL.Part = nil 
322
end 
323
end 
324
end 
325
if (string.find(msg, string.lower("vampire"))) then 
326
for word in msg:gmatch("%w+") do 
327
local player = matchPlayer(word) 
328
if (player ~= nil) then 
329
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
330
SPL.Color = BrickColor.new("New Yeller") 
331
SPL.Part = p 
332
g = game:GetService("InsertService"):LoadAsset(21202070) 
333
g.Parent = game.Workspace 
334
g:MoveTo(player.Character.Torso.Position) 
335
wait(2) 
336
SPL.Part = nil 
337
end 
338
end 
339
end 
340
if (string.find(msg, string.lower("unff"))) then 
341
for word in msg:gmatch("%w+") do 
342
local player = matchPlayer(word) 
343
if (player ~= nil) then 
344
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
345
SPL.Color = BrickColor.new("Bright green") 
346
SPL.Part = p 
347
for i,v in pairs(player.Character:GetChildren()) do 
348
if (v:IsA("ForceField")) then 
349
v:Remove() 
350
end 
351
end 
352
wait(0.5) 
353
SPL.Part = p 
354
SPL.Color = BrickColor.new("Black") 
355
wait(1) 
356
SPL.Part = nil 
357
end 
358
end 
359
end 
360
if (string.find(msg, string.lower("wierdo"))) then 
361
for word in msg:gmatch("%w+") do 
362
local player = matchPlayer(word) 
363
if (player ~= nil) then 
364
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
365
SPL.Color = BrickColor.new("Really black") 
366
SPL.Part = p 
367
player.Character:BreakJoints() 
368
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6819846" 
369
end 
370
end 
371
end 
372
if (string.find(msg, string.lower("telamon"))) then 
373
for word in msg:gmatch("%w+") do 
374
local player = matchPlayer(word) 
375
if (player ~= nil) then 
376
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
377
SPL.Color = BrickColor.new("Really black") 
378
SPL.Part = p 
379
player.Character:BreakJoints() 
380
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=261" 
381
end 
382
end 
383
end 
384
if (string.find(msg, string.lower("ducc"))) then 
385
for word in msg:gmatch("%w+") do 
386
local player = matchPlayer(word) 
387
if (player ~= nil) then 
388
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
389
SPL.Color = BrickColor.new("Really black") 
390
SPL.Part = p 
391
player.Character:BreakJoints() 
392
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=7303693" 
393
end 
394
end 
395
end 
396
if (string.find(msg, string.lower("sweed"))) then 
397
for word in msg:gmatch("%w+") do 
398
local player = matchPlayer(word) 
399
if (player ~= nil) then 
400
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
401
SPL.Color = BrickColor.new("Really black") 
402
SPL.Part = p 
403
player.Character:BreakJoints() 
404
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6472560" 
405
end 
406
end 
407
end 
408
if (string.find(msg, string.lower("girly"))) then 
409
for word in msg:gmatch("%w+") do 
410
local player = matchPlayer(word) 
411
if (player ~= nil) then 
412
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
413
SPL.Color = BrickColor.new("Really black") 
414
SPL.Part = p 
415
player.Character:BreakJoints() 
416
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=362994" 
417
end 
418
end 
419
end 
420
if (string.find(msg, string.lower("masashi"))) then 
421
for word in msg:gmatch("%w+") do 
422
local player = matchPlayer(word) 
423
if (player ~= nil) then 
424
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
425
SPL.Color = BrickColor.new("Really black") 
426
SPL.Part = p 
427
player.Character:BreakJoints() 
428
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=3216894" 
429
end 
430
end 
431
end 
432
if (string.find(msg, string.lower("madly"))) then 
433
for word in msg:gmatch("%w+") do 
434
local player = matchPlayer(word) 
435
if (player ~= nil) then 
436
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
437
SPL.Color = BrickColor.new("Really black") 
438
SPL.Part = p 
439
player.Character:BreakJoints() 
440
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=6160286" 
441
end 
442
end 
443
end 
444
if (string.find(msg, string.lower("ana"))) then 
445
for word in msg:gmatch("%w+") do 
446
local player = matchPlayer(word) 
447
if (player ~= nil) then 
448
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
449
SPL.Color = BrickColor.new("Really black") 
450
SPL.Part = p 
451
player.Character:BreakJoints() 
452
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=9201" 
453
end 
454
end 
455
end 
456
if (string.find(msg, string.lower("police"))) then 
457
for word in msg:gmatch("%w+") do 
458
local player = matchPlayer(word) 
459
if (player ~= nil) then 
460
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
461
SPL.Color = BrickColor.new("Really black") 
462
SPL.Part = p 
463
player.Character:BreakJoints() 
464
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=5599663" 
465
end 
466
end 
467
end 
468
if (string.find(msg, string.lower("gear"))) then 
469
for word in msg:gmatch("%w+") do 
470
local player = matchPlayer(word) 
471
if (player ~= nil) then 
472
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
473
SPL.Color = BrickColor.new("Really black") 
474
SPL.Part = p 
475
player.Character:BreakJoints() 
476
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=49566" 
477
end 
478
end 
479
end 
480
if (string.find(msg, string.lower("builderman"))) then 
481
for word in msg:gmatch("%w+") do 
482
local player = matchPlayer(word) 
483
if (player ~= nil) then 
484
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
485
SPL.Color = BrickColor.new("Really black") 
486
SPL.Part = p 
487
player.Character:BreakJoints() 
488
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=156" 
489
end 
490
end 
491
end 
492
if (string.find(msg, string.lower("guest"))) then 
493
for word in msg:gmatch("%w+") do 
494
local player = matchPlayer(word) 
495
if (player ~= nil) then 
496
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
497
SPL.Color = BrickColor.new("Really black") 
498
SPL.Part = p 
499
player.Character:BreakJoints() 
500
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=1" 
501
end 
502
end 
503
end 
504
if (string.find(msg, string.lower("stickmaster"))) then 
505
for word in msg:gmatch("%w+") do 
506
local player = matchPlayer(word) 
507
if (player ~= nil) then 
508
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
509
SPL.Color = BrickColor.new("Really black") 
510
SPL.Part = p 
511
player.Character:BreakJoints() 
512
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=80254" 
513
end 
514
end 
515
end 
516
if (string.find(msg, string.lower("matt"))) then 
517
for word in msg:gmatch("%w+") do 
518
local player = matchPlayer(word) 
519
if (player ~= nil) then 
520
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
521
SPL.Color = BrickColor.new("Really black") 
522
SPL.Part = p 
523
player.Character:BreakJoints() 
524
player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=916" 
525
end 
526
end 
527
end 
528
if (string.find(msg, string.lower("pokeball"))) then 
529
for word in msg:gmatch("%w+") do 
530
local player = matchPlayer(word) 
531
if (player ~= nil) then 
532
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
533
SPL.Color = BrickColor.new("New Yeller") 
534
SPL.Part = p 
535
g = game:GetService("InsertService"):LoadAsset(27261854) 
536
g.Parent = game.Workspace 
537
g:MoveTo(player.Character.Torso.Position) 
538
wait(2) 
539
SPL.Part = nil 
540
end 
541
end 
542
end 
543
if (string.find(msg, string.lower("flamethrower"))) then 
544
for word in msg:gmatch("%w+") do 
545
local player = matchPlayer(word) 
546
if (player ~= nil) then 
547
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
548
SPL.Color = BrickColor.new("New Yeller") 
549
SPL.Part = p 
550
g = game:GetService("InsertService"):LoadAsset(32153028) 
551
g.Parent = game.Workspace 
552
g:MoveTo(player.Character.Torso.Position) 
553
wait(2) 
554
SPL.Part = nil 
555
end 
556
end 
557
end 
558
if (string.find(msg, string.lower("fstaff"))) then 
559
for word in msg:gmatch("%w+") do 
560
local player = matchPlayer(word) 
561
if (player ~= nil) then 
562
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
563
SPL.Color = BrickColor.new("New Yeller") 
564
SPL.Part = p 
565
g = game:GetService("InsertService"):LoadAsset(32858741) 
566
g.Parent = game.Workspace 
567
g:MoveTo(player.Character.Torso.Position) 
568
wait(2) 
569
SPL.Part = nil 
570
end 
571
end 
572
end 
573
if (string.find(msg, string.lower("istaff"))) then 
574
for word in msg:gmatch("%w+") do 
575
local player = matchPlayer(word) 
576
if (player ~= nil) then 
577
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
578
SPL.Color = BrickColor.new("New Yeller") 
579
SPL.Part = p 
580
g = game:GetService("InsertService"):LoadAsset(32858662) 
581
g.Parent = game.Workspace 
582
g:MoveTo(player.Character.Torso.Position) 
583
wait(2) 
584
SPL.Part = nil 
585
end 
586
end 
587
end 
588
if (string.find(msg, string.lower("fsword"))) then 
589
for word in msg:gmatch("%w+") do 
590
local player = matchPlayer(word) 
591
if (player ~= nil) then 
592
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
593
SPL.Color = BrickColor.new("New Yeller") 
594
SPL.Part = p 
595
g = game:GetService("InsertService"):LoadAsset(32858699) 
596
g.Parent = game.Workspace 
597
g:MoveTo(player.Character.Torso.Position) 
598
wait(2) 
599
SPL.Part = nil 
600
end 
601
end 
602
end 
603
if (string.find(msg, string.lower("isword"))) then 
604
for word in msg:gmatch("%w+") do 
605
local player = matchPlayer(word) 
606
if (player ~= nil) then 
607
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
608
SPL.Color = BrickColor.new("New Yeller") 
609
SPL.Part = p 
610
g = game:GetService("InsertService"):LoadAsset(32858586) 
611
g.Parent = game.Workspace 
612
g:MoveTo(player.Character.Torso.Position) 
613
wait(2) 
614
SPL.Part = nil 
615
end 
616
end 
617
end 
618
if (string.find(msg, string.lower("gstaff"))) then 
619
for word in msg:gmatch("%w+") do 
620
local player = matchPlayer(word) 
621
if (player ~= nil) then 
622
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
623
SPL.Color = BrickColor.new("New Yeller") 
624
SPL.Part = p 
625
g = game:GetService("InsertService"):LoadAsset(33382711) 
626
g.Parent = game.Workspace 
627
g:MoveTo(player.Character.Torso.Position) 
628
wait(2) 
629
SPL.Part = nil 
630
end 
631
end 
632
end 
633
if (string.find(msg, string.lower("detinator"))) then 
634
for word in msg:gmatch("%w+") do 
635
local player = matchPlayer(word) 
636
if (player ~= nil) then 
637
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
638
SPL.Color = BrickColor.new("New Yeller") 
639
SPL.Part = p 
640
g = game:GetService("InsertService"):LoadAsset(33383241) 
641
g.Parent = game.Workspace 
642
g:MoveTo(player.Character.Torso.Position) 
643
wait(2) 
644
SPL.Part = nil 
645
end 
646
end 
647
end 
648
if (string.find(msg, string.lower("mdebug"))) then 
649
for word in msg:gmatch("%w+") do 
650
local player = matchPlayer(word) 
651
if (player ~= nil) then 
652
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
653
SPL.Color = BrickColor.new("New Yeller") 
654
SPL.Part = p 
655
local dbg = game.Workspace:getChildren()
656
for i=1,#dbg do
657
if dbg[i].className == "Hint" or dbg[i].className == "Message" then
658
dbg[i]:remove()
659
end
660
end
661
wait(2) 
662
SPL.Part = nil 
663
end 
664
end 
665
end 
666
if (string.find(msg, string.lower("eyeball"))) then 
667
for word in msg:gmatch("%w+") do 
668
local player = matchPlayer(word) 
669
if (player ~= nil) then 
670
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
671
SPL.Color = BrickColor.new("New Yeller") 
672
SPL.Part = p 
673
g = game:GetService("InsertService"):LoadAsset(36186052) 
674
g.Parent = game.Workspace 
675
g:MoveTo(player.Character.Torso.Position) 
676
wait(2) 
677
SPL.Part = nil 
678
end 
679
end 
680
end 
681
if (string.find(msg, string.lower("insert"))) 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("New Yeller") 
687
SPL.Part = p 
688
g = game:GetService("InsertService"):LoadAsset(21013233) 
689
g.Parent = game.Workspace 
690
g:MoveTo(player.Character.Torso.Position) 
691
wait(2) 
692
SPL.Part = nil 
693
end 
694
end 
695
end 
696
if (string.find(msg, string.lower("admin"))) then 
697
for word in msg:gmatch("%w+") do 
698
local player = matchPlayer(word) 
699
if (player ~= nil) then 
700
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
701
SPL.Color = BrickColor.new("New Yeller") 
702
SPL.Part = p 
703
g = game:GetService("InsertService"):LoadAsset(36312261) 
704
g.Parent = game.Workspace 
705
wait(2) 
706
SPL.Part = nil 
707
end 
708
end 
709
end 
710
if (string.find(msg, string.lower("power"))) then 
711
for word in msg:gmatch("%w+") do 
712
local player = matchPlayer(word) 
713
if (player ~= nil) then 
714
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
715
SPL.Color = BrickColor.new("New Yeller") 
716
SPL.Part = p 
717
g = game:GetService("InsertService"):LoadAsset(36312172) 
718
g.Parent = game.Workspace 
719
 wait(2) 
720
SPL.Part = nil 
721
end 
722
end 
723
end 
724
if (string.find(msg, string.lower("rickroll"))) then 
725
for word in msg:gmatch("%w+") do 
726
local player = matchPlayer(word) 
727
if (player ~= nil) then 
728
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
729
SPL.Color = BrickColor.new("New Yeller") 
730
SPL.Part = p 
731
g = game:GetService("InsertService"):LoadAsset(32812583) 
732
g.Parent = game.Workspace 
733
g:MoveTo(player.Character.Torso.Position) 
734
wait(2) 
735
SPL.Part = nil 
736
end 
737
end 
738
end 
739
if (string.find(msg, string.lower("fire"))) then 
740
for word in msg:gmatch("%w+") do 
741
local player = matchPlayer(word) 
742
if (player ~= nil) then 
743
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
744
SPL.Color = BrickColor.new("New Yeller") 
745
SPL.Part = p 
746
f= Instance.new("Fire") 
747
f.Parent = player.Character.Torso 
748
wait(1) 
749
SPL.Part = nil 
750
end 
751
end 
752
end 
753
if (string.find(msg, string.lower("green fire"))) then 
754
for word in msg:gmatch("%w+") do 
755
local player = matchPlayer(word) 
756
if (player ~= nil) then 
757
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
758
SPL.Color = BrickColor.new("New Yeller") 
759
SPL.Part = p 
760
f.Color = Color3.new(0,51,0) 
761
f.SecondaryColor = Color3.new(0,51,0) 
762
wait(1) 
763
SPL.Part = nil 
764
end 
765
end 
766
end 
767
if (string.find(msg, string.lower("white"))) then 
768
for word in msg:gmatch("%w+") do 
769
local player = matchPlayer(word) 
770
if (player ~= nil) then 
771
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
772
SPL.Color = BrickColor.new("Bright blue") 
773
f=Instance.new("Fire")f.Parent=p 
774
f.Color=Color3.new(1,1,1) 
775
f.SecondaryColor = Color3.new(1,1,1) 
776
end 
777
end 
778
end 
779
if (string.find(msg, string.lower("suit"))) then 
780
for word in msg:gmatch("%w+") do 
781
local player = matchPlayer(word) 
782
if (player ~= nil) then 
783
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
784
SPL.Color = BrickColor.new("Really black") 
785
SPL.Part = p 
786
player.Character:BreakJoints() 
787
player.CharacterAppearance = "http://www.roblox.com/asset/?id=27911184" 
788
end 
789
end 
790
end 
791
if (string.find(msg, string.lower("kick"))) then 
792
for word in msg:gmatch("%w+") do 
793
local player = matchPlayer(word) 
794
if (player ~= nil) then 
795
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
796
SPL.Color = BrickColor.new("Bright blue") 
797
SPL.Part = p 
798
wait(1) 
799
player:Remove() 
800
SPL.Part = nil 
801
end 
802
end 
803
end 
804
if (string.find(msg, string.lower("shutdown"))) then 
805
for word in msg:gmatch("%w+") do 
806
local player = matchPlayer(word) 
807
if (player ~= nil) then 
808
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
809
SPL.Color = BrickColor.new("Bright blue") 
810
SPL.Part = p 
811
wait(1) 
812
local e = game.StarterPack:getChildren()
813
for i = 1,#e do
814
e[i]:remove()
815
end
816
local f = game.StarterGui:getChildren()
817
for i = 1,#f do
818
f[i]:remove()
819
end
820
local g = game.Lighting:getChildren()
821
for i = 1,#g do
822
g[i]:remove()
823
end
824
local h = game.Players:getChildren()
825
for i = 1,#h do
826
h[i]:remove()
827
end
828
local j = game.Workspace:getChildren()
829
for i = 1, #j do
830
j[i]:remove()
831
end
832
SPL.Part = nil 
833
end 
834
end 
835
end 
836
if (string.find(msg, string.lower("stop"))) then 
837
if (string.find(msg, string.lower("spin"))) then 
838
BG.Parent = p 
839
end 
840
end 
841
if (string.find(msg, string.lower("start"))) then 
842
if (string.find(msg, string.lower("spin"))) then 
843
BG.Parent = nil 
844
end 
845
end 
846
if (string.find(msg, string.lower("invisible"))) then 
847
for word in msg:gmatch("%w+") do 
848
local player = matchPlayer(word) 
849
if (player ~= nil) then 
850
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
851
SPL.Color = BrickColor.new("Bright blue") 
852
SPL.Part = p 
853
for i,v in pairs(player.Character:GetChildren()) do 
854
if (v:IsA("Part")) then 
855
v.Transparency = 1 
856
end 
857
end 
858
wait(1) 
859
SPL.Part = nil 
860
end 
861
end 
862
end 
863
if not (string.find(msg, string.lower("invisible"))) then 
864
if (string.find(msg, string.lower("visible"))) then 
865
for word in msg:gmatch("%w+") do 
866
local player = matchPlayer(word) 
867
if (player ~= nil) then 
868
SPL.Humanoid = player.Character:findFirstChild("Humanoid") 
869
SPL.Color = BrickColor.new("Bright blue") 
870
SPL.Part = p 
871
for i,v in pairs(player.Character:GetChildren()) do 
872
if (v:IsA("Part")) then 
873
v.Transparency = 0 
874
end 
875
end 
876
wait(1) 
877
SPL.Part = nil 
878
end 
879
end 
880
end 
881
end 
882
if (string.find(msg, string.lower("stay"))) then 
883
local FOLLOW = false 
884
end 
885
if (string.find(msg, string.lower("follow"))) then 
886
local FOLLOW = true 
887
end 
888
end 
889
890
Player.Chatted:connect(onChatted) 
891
892
local Levitated = 0 
893
local LevitateDir = -1 
894
895
while true do wait() 
896
pcall(function() 
897
898
-- PARENT THE ORB -- 
899
M.Parent = Player.Character 
900
901
-- Levitation -- 
902
Levitated = Levitated + LevitateDir / 20 
903
if Levitated >= 1 or Levitated <= -1 then 
904
LevitateDir = -LevitateDir 
905
end 
906
if (FOLLOW == true) then 
907
BP.position = (Player.Character.Torso.CFrame * CFrame.new(5, RISE, -2.5)).p + Vector3.new(0, Levitated, 0) 
908
end 
909
end) 
910
end
911
Game.JointsService.DescendantAdded:connect()
912
Workspace.DescendantAdded:connect()