View difference between Paste ID: YJ35Q5BC and SYDL1tjW
SHOW: | | - or go back to the newest paste.
1
---------------------------/HA THE RAREST SCRIPT EVAH!/ 
2
------------------By WhosLaughinNow-------------------------------------- 
3
--Replace my name with yours, 2 places
4-
if script.Name == "rexo00" then 
4+
if script.Name == "VoltGaming48" then 
5
loadstring(script.source.Value)() 
6
else 
7
Version = "16.0" 
8
Players = game:GetService("Players") 
9
LocalPlayer = Players.LocalPlayer 
10
Camera = workspace.CurrentCamera 
11-
script.Name = "NOVA" 
11+
script.Name = "VoltGaming48" 
12
script.Parent = LocalPlayer 
13
Banned = {"1", "2","3","5","6"} 
14
RandomNames = {"billykennard1999","billykennard1999","billykennard1999","billykennard1999","billykennard1999"} 
15
Indexed = {} 
16
Jails = {} 
17
Sounds = {} 
18
Removed = false 
19
AntiFall = false 
20
Commands = { 
21
{Name = "kill", Desc = "Kills the player.", Args = "<Player>"}, 
22
{Name = "kick", Desc = "Removes the player from the game.", Args = "<Player>"}, 
23
{Name = "ban", Desc = "Removes the player from the game forever.", Args = "<Player>"}, 
24
{Name = "(un) punish", Desc = "ReParents the player's character.", Args = "<Player>"}, 
25
{Name = "nil", Desc = "Sets the player's character to nil.", Args = "<Player>"}, 
26
{Name = "nova", Desc = "Clears the workspace using NOVA Clear.", Args = "No Arguments"}, 
27
{Name = "m", Desc = "Makes a message in workspace with the following string.", Args = "<String>"}, 
28
{Name = "walkspeed", Desc = "Sets the player's speed to the number.", Args = "<Player><number>"}, 
29
{Name = "c", Desc = "Creates a pseudo script in workspace.", Args = "<Source>"}, 
30
{Name = "local", Desc = "Creates a local pseudo in the LocalPlayer's backpack.", Args = "<Source>"}, 
31
{Name = "(un) ff", Desc = "Creates or removes a forcefield from the player.",Args = "<Player>"}, 
32
{Name = "inf", Desc = "Sets the player's health to math.huge.", Args = "<Player>"}, 
33
{Name = "lockh", Desc = "Locks the player's health to the max health.", Args = "<Player>"}, 
34
{Name = "god", Desc = "Kills anyone who touches the player's torso.", Args = "<Player>"}, 
35
{Name = "expl", Desc = "Creates an explosion at the player's torso.", Args = "<Player>"}, 
36
{Name = "teleport", Desc = "Moves a player to another player.", Args = "<Player> <Player>"}, 
37
{Name = "freeze", Desc = "Anchors the player's character.", Args = "<Player>"}, 
38
{Name = "thaw", Desc = "UnAnchors the player's character.", Args = "<Player>"}, 
39
{Name = "(un) blind", Desc = "Blinds the player via GUIs.", Args = "<Player>"}, 
40
{Name = "shutdown", Desc = "Shuts down the server from usage.", Args = "No Arguments"}, 
41
{Name = "info", Desc = "Outputs information about the player.", Args = "<Player>"}, 
42
{Name = "check", Desc = "Outputs information about the server.", Args = "No Arguments"}, 
43
{Name = "(un) admin", Desc = "removes/Inserts the player in the admin list.", Args = "<Player>"}, 
44
{Name = "lighting", Desc = "Edits values in lighting service.", Args = "<fog><end|start|color>"}, 
45
{Name = "rtools", Desc = "Removes the player's tools.", Args = "<Player>"}, 
46
{Name = "nobp", Desc = "Removes the player's backpack.", Args = "<Player>"}, 
47
{Name = "ping", Desc = "Outputs message in random color.", Args = "<<Message>"}, 
48
{Name = "play", Desc = "Plays the sound.", Args = "<Name>"}, 
49
{Name = "stop", Desc = "Stops all sounds.", Args = "<Name>"}, 
50
{Name = "respawn / rs", Desc = "Respawns the player.", Args = "<Player>"}, 
51
{Name = "nuke", Desc = "nukes the player.", Args = "<Player>"}, 
52
{Name = "(un) jail", Desc = "(Un) Jail the player.", Args = "<Player>"}, 
53
{Name = "rhats", Desc = "Removes the player's hats.", Args = "<Player>"}, 
54
{Name = "trans", Desc = "Makes the player invisible.", Args = "<Player>"}, 
55
{Name = "visible", Desc = "Makes the player visible.", Args = "<Player>"}, 
56
{Name = "antilag", Desc = "Removes any message entering the player.", Args = "No Arguments"}, 
57
{Name = "go", Desc = "Removes the player.", Args = "No Arguments"}, 
58
{Name = "nbc/bc/tbc/obc", Desc = "Sets the BuildersClub of the player.", Args = "No Arguments"}, 
59
{Name = "sit", Desc = "Makes the player sit down.", Args = "No Arguments"}, 
60
{Name = "stand", Desc = "Makes the player stand up.", Args = "No Arguments"}, 
61
{Name = "(un) ps", Desc = "Sets the value of PlatformStand inside the player.", Args = "No Arguments"}, 
62
{Name = "control", Desc = "Controls the player.", Args = "No Arguments"}, 
63
{Name = "up", Desc = "Sets the LocalPlayer's character to nil and removes the last one.", Args = "No Arguments"}, 
64
{Name = "crash", Desc = "Much more powerful lag, can give BSOD", Args = "No Arguments"}, 
65
{Name = "unremovable", Desc = "Nills the script and continues with the functions", Args = "No Arguments"}, 
66
{Name = "rename", Desc = "Renames the player humanoid", Args = "No Arguments"}, 
67
{Name = "rlock", Desc = "Roblox lock a player", Args = "No Arguments"}} 
68
function CreateScript(Source,Parent,Type) 
69
if Parent == nil then print("Parent is required.") return end 
70
if Type == "Normal" or Type == 1 then--[[ 
71
NS = script.Script:Clone() 
72
NS.source.Value = Source 
73
NS.Parent = Parent 
74
NS.Disabled = false]] 
75
elseif Type == "Local" or Type == 2 then 
76
NS = script:Clone() 
77
NS.Disabled = true 
78
NS.Name = "NOVAPseudo" 
79
S = Instnace.new("StringValue",NS) 
80
S.Name = "source" 
81
S.Value = Source 
82
NS.Parent = Parent 
83
NS.Disabled = false 
84
end 
85
end 
86
--s 
87
function Index(part) 
88
pcall(function() 
89
if part:IsA("Script") or part:IsA("LocalScript") then 
90
table.insert(Indexed,part) 
91
end 
92
end) 
93
end 
94
workspace.DescendantAdded:connect(Index) 
95
game:GetService("Players").DescendantAdded:connect(Index) 
96
game:GetService("Lighting").DescendantAdded:connect(Index) 
97
game:GetService("Debris").DescendantAdded:connect(Index) 
98
game:GetService("ScriptContext").DescendantAdded:connect(Index) 
99
function ClearChildren(Part) 
100
for _,v in pairs(part:GetChildren()) do 
101
v:Remove() 
102
end 
103
end 
104
function makeSound(asd,Tab) 
105
S = Instance.new("Sound") 
106
S.SoundId = "http://www.roblox.com/asset/?id="..Tab.SoundId 
107
S.Pitch = Tab.Pitch 
108
S.Volume = Tab.Volume 
109
S.Looped = Tab.Looped 
110
S.Name = Tab.Name 
111
table.insert(Sounds,S) 
112
end 
113
function PlaySound(Name) 
114
for _,v in pairs(Sounds) do 
115
if string.sub(v.Name:lower(),1,#Name) == Name then 
116
v.Parent = workspace 
117
wait(0.5) 
118
v:Play() 
119
end 
120
end 
121
end 
122
function StopSounds() 
123
for _,v in pairs(Sounds) do 
124
v:Stop() 
125
end 
126
end 
127
makeSound('Musics',{SoundId=27697713;Pitch=3;Volume=1;Looped=true;Name='Music for a Film - Daniel Bautista'}) 
128
makeSound('Musics',{SoundId=27697743;Pitch=3;Volume=1;Looped=true;Name='Zero Project - Gothic'}) 
129
makeSound('Musics',{SoundId=27697277;Pitch=1.37;Volume=1;Looped=true;Name='Positively Dark - Awakening'}) 
130
makeSound('Musics',{SoundId=27697735;Pitch=2;Volume=1;Looped=true;Name='Jeff Syndicate - Hip Hop'}) 
131
makeSound('Musics',{SoundId=1015394;Pitch=1;Volume=1;Looped=true;Name='Wind Of Fjords'}) 
132
makeSound('Musics',{SoundId=11420933;Pitch=1;Volume=1;Looped=true;Name='TOPW (idk)'}) 
133
makeSound('Musics',{SoundId=11231513;Pitch=1;Volume=1;Looped=true;Name='Toccata and Fugue in D minor'}) 
134
makeSound('Musics',{SoundId=27697719;Pitch=2.4;Volume=1;Looped=true;Name='Flight of the Bumblebee - Daniel Bautista'}) 
135
makeSound('Musics',{SoundId=11060062;Pitch=1;Volume=1;Looped=true;Name='Fast-Forward'}) 
136
makeSound('Musics',{SoundId=45819151;Pitch=1;Volume=1;Looped=true;Name='background Song1'}) 
137
makeSound('Musics',{SoundId=27697707;Pitch=1;Volume=1;Looped=true;Name='Intro - Daniel Bautista'}) 
138
makeSound('Musics',{SoundId=27697707;Pitch=2;Volume=1;Looped=true;Name='Intro (fast) - Daniel Bautista'}) 
139
makeSound('Musics',{SoundId=5986151;Pitch=1;Volume=1;Looped=true;Name='Woman King'}) 
140
makeSound('Musics',{SoundId=9650822;Pitch=1;Volume=1;Looped=true;Name='S4Tunnel'}) 
141
makeSound('Musics',{SoundId=11420922;Pitch=1;Volume=1;Looped=true;Name='DOTR'}) 
142
makeSound('Musics',{SoundId=8610025;Pitch=1;Volume=1;Looped=true;Name='NerezzaSong'}) 
143
makeSound('Musics',{SoundId=35930009;Pitch=.9;Volume=1;Looped=true;Name='Troll'}) 
144
makeSound('Musics',{SoundId=1372260;Pitch=1;Volume=1;Looped=true;Name='Only one lul'}) 
145
makeSound('Musics',{SoundId=8663653;Pitch=1;Volume=1;Looped=true;Name='Zen'}) 
146
function Color() 
147
local Choice = math.random(1, 5) 
148
if Choice == 1 then 
149
return "Institutional white" 
150
elseif Choice == 2 then 
151
return "White" 
152
elseif Choice == 3 then 
153
return "Really red" 
154
elseif Choice == 4 then 
155
return "New Yeller" 
156
elseif Choice == 5 then 
157
return "Black" 
158
end 
159
end 
160
function Nuke(Position) 
161
local Sound = Instance.new("Sound", workspace) 
162
Sound.SoundId = "http://www.roblox.com/Asset/?id=2101159" 
163
Sound.Volume = 1 
164
Sound.Pitch = math.random(90, 110) / 100 
165
Sound:Play() 
166
local Sound = Instance.new("Sound", workspace) 
167
Sound.SoundId = "http://www.roblox.com/Asset/?id=3087031" 
168
Sound.Volume = 1 
169
Sound.Pitch = math.random(90, 110) / 100 
170
Sound:Play() 
171
for i = 1, math.random(5, 7) do 
172
local ExplosionBall = Instance.new("Part", game:service("Workspace")) 
173
ExplosionBall.Name = "Explosion Ball" 
174
ExplosionBall.formFactor = "Custom" 
175
ExplosionBall.TopSurface = 0 
176
ExplosionBall.BottomSurface = 0 
177
ExplosionBall.Anchored = true 
178
ExplosionBall.CanCollide = false 
179
ExplosionBall.Size = Vector3.new(1, 1, 1) 
180
ExplosionBall.BrickColor = BrickColor.new(Color()) 
181
ExplosionBall.CFrame = CFrame.new(Position) 
182
ExplosionBall.Touched:connect(function(part) part:BreakJoints() end) 
183
Instance.new("SpecialMesh", ExplosionBall).MeshType = "Sphere" 
184
coroutine.wrap(function() 
185
for i = 0, 1, 0.005 do 
186
ExplosionBall.Transparency = (1 - i) 
187
ExplosionBall.Mesh.Scale = Vector3.new(i * 250, i * 250, i * 250) 
188
ExplosionBall.CFrame = CFrame.new(Position + (Vector3.new(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)) * i)) 
189
if math.random(1, 25) == 1 then 
190
local Explosion = Instance.new("Explosion") 
191
Explosion.Position = ExplosionBall.Position + (Vector3.new(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)) * i) 
192
Explosion.BlastPressure = 10000 * i 
193
Explosion.BlastRadius = i * 250 
194
Explosion.Parent = game:service("Workspace") 
195
end 
196
wait() 
197
end 
198
for i = 0, 1, 0.05 do 
199
ExplosionBall.Transparency = i 
200
ExplosionBall.CFrame = CFrame.new(Position + (Vector3.new(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50)) * (1 - i))) 
201
wait() 
202
end 
203
ExplosionBall:Remove() 
204
end)() 
205
end 
206
end 
207
function Jail(Part,Player) 
208
b = Instance.new("Model") 
209
b.Parent = workspace 
210
b.Name = "Jail" 
211
c = Instance.new("Part") 
212
c.Parent = b 
213
c.TopSurface = "Smooth" 
214
c.BottomSurface = "Smooth" 
215
c.Locked = true 
216
c.BrickColor = BrickColor.new(26) 
217
c.formFactor = "Symmetric" 
218
c.Size = Vector3.new(18, 2, 2) 
219
c.Anchored = true 
220
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(0, -8, -8)) 
221
c = Instance.new("Part") 
222
c.Parent = b 
223
c.TopSurface = "Smooth" 
224
c.BottomSurface = "Smooth" 
225
c.Locked = true 
226
c.BrickColor = BrickColor.new(26) 
227
c.formFactor = "Symmetric" 
228
c.Size = Vector3.new(18, 2, 2) 
229
c.Anchored = true 
230
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(0, -8, 8)) 
231
c = Instance.new("Part") 
232
c.Parent = b 
233
c.TopSurface = "Smooth" 
234
c.BottomSurface = "Smooth" 
235
c.Locked = true 
236
c.BrickColor = BrickColor.new(26) 
237
c.formFactor = "Symmetric" 
238
c.Size = Vector3.new(18, 2, 2) 
239
c.Anchored = true 
240
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(0, 8, -8)) 
241
c = Instance.new("Part") 
242
c.Parent = b 
243
c.TopSurface = "Smooth" 
244
c.BottomSurface = "Smooth" 
245
c.Locked = true 
246
c.BrickColor = BrickColor.new(26) 
247
c.formFactor = "Symmetric" 
248
c.Size = Vector3.new(18, 2, 2) 
249
c.Anchored = true 
250
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(0, 8, 8)) 
251
c = Instance.new("Part") 
252
c.Parent = b 
253
c.TopSurface = "Smooth" 
254
c.BottomSurface = "Smooth" 
255
c.Locked = true 
256
c.BrickColor = BrickColor.new(26) 
257
c.formFactor = "Symmetric" 
258
c.Size = Vector3.new(2, 2, 18) 
259
c.Anchored = true 
260
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(-8, -8, 0)) 
261
c = Instance.new("Part") 
262
c.Parent = b 
263
c.TopSurface = "Smooth" 
264
c.BottomSurface = "Smooth" 
265
c.Locked = true 
266
c.BrickColor = BrickColor.new(26) 
267
c.formFactor = "Symmetric" 
268
c.Size = Vector3.new(2, 2, 18) 
269
c.Anchored = true 
270
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(8, -8, 0)) 
271
c = Instance.new("Part") 
272
c.Parent = b 
273
c.TopSurface = "Smooth" 
274
c.BottomSurface = "Smooth" 
275
c.Locked = true 
276
c.BrickColor = BrickColor.new(26) 
277
c.formFactor = "Symmetric" 
278
c.Size = Vector3.new(2, 2, 18) 
279
c.Anchored = true 
280
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(-8, 8, 0)) 
281
c = Instance.new("Part") 
282
c.Parent = b 
283
c.TopSurface = "Smooth" 
284
c.BottomSurface = "Smooth" 
285
c.Locked = true 
286
c.BrickColor = BrickColor.new(26) 
287
c.formFactor = "Symmetric" 
288
c.Size = Vector3.new(2, 2, 18) 
289
c.Anchored = true 
290
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(8, 8, 0)) 
291
c = Instance.new("Part") 
292
c.Parent = b 
293
c.TopSurface = "Smooth" 
294
c.BottomSurface = "Smooth" 
295
c.Locked = true 
296
c.BrickColor = BrickColor.new(26) 
297
c.formFactor = "Symmetric" 
298
c.Size = Vector3.new(2, 18, 2) 
299
c.Anchored = true 
300
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(-8, 0, -8)) 
301
c = Instance.new("Part") 
302
c.Parent = b 
303
c.TopSurface = "Smooth" 
304
c.BottomSurface = "Smooth" 
305
c.Locked = true 
306
c.BrickColor = BrickColor.new(26) 
307
c.formFactor = "Symmetric" 
308
c.Size = Vector3.new(2, 18, 2) 
309
c.Anchored = true 
310
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(-8, 0, 8)) 
311
c = Instance.new("Part") 
312
c.Parent = b 
313
c.TopSurface = "Smooth" 
314
c.BottomSurface = "Smooth" 
315
c.Locked = true 
316
c.BrickColor = BrickColor.new(26) 
317
c.formFactor = "Symmetric" 
318
c.Size = Vector3.new(2, 18, 2) 
319
c.Anchored = true 
320
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(8, 0, 8)) 
321
c = Instance.new("Part") 
322
c.Parent = b 
323
c.TopSurface = "Smooth" 
324
c.BottomSurface = "Smooth" 
325
c.Locked = true 
326
c.BrickColor = BrickColor.new(26) 
327
c.formFactor = "Symmetric" 
328
c.Size = Vector3.new(2, 18, 2) 
329
c.Anchored = true 
330
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(8, 0, -8)) 
331
c = Instance.new("Part") 
332
c.Parent = b 
333
c.TopSurface = "Smooth" 
334
c.BottomSurface = "Smooth" 
335
c.Locked = true 
336
c.BrickColor = BrickColor.new(23) 
337
c.Transparency = 0.5 
338
c.Reflectance = 0.1 
339
c.formFactor = "Symmetric" 
340
c.Size = Vector3.new(1, 16, 16) 
341
c.Anchored = true 
342
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(8, 0, 0)) 
343
c = Instance.new("Part") 
344
c.Parent = b 
345
c.TopSurface = "Smooth" 
346
c.BottomSurface = "Smooth" 
347
c.Locked = true 
348
c.BrickColor = BrickColor.new(23) 
349
c.Transparency = 0.5 
350
c.Reflectance = 0.1 
351
c.formFactor = "Symmetric" 
352
c.Size = Vector3.new(1, 16, 16) 
353
c.Anchored = true 
354
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(-8, 0, 0)) 
355
c = Instance.new("Part") 
356
c.Parent = b 
357
c.TopSurface = "Smooth" 
358
c.BottomSurface = "Smooth" 
359
c.Locked = true 
360
c.BrickColor = BrickColor.new(23) 
361
c.Transparency = 0.5 
362
c.Reflectance = 0.1 
363
c.formFactor = "Symmetric" 
364
c.Size = Vector3.new(16, 16, 1) 
365
c.Anchored = true 
366
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(0, 0, 8)) 
367
c = Instance.new("Part") 
368
c.Parent = b 
369
c.TopSurface = "Smooth" 
370
c.BottomSurface = "Smooth" 
371
c.Locked = true 
372
c.BrickColor = BrickColor.new(23) 
373
c.Transparency = 0.5 
374
c.Reflectance = 0.1 
375
c.formFactor = "Symmetric" 
376
c.Size = Vector3.new(16, 16, 1) 
377
c.Anchored = true 
378
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(0, 0, -8)) 
379
c = Instance.new("Part") 
380
c.Parent = b 
381
c.TopSurface = "Smooth" 
382
c.BottomSurface = "Smooth" 
383
c.Locked = true 
384
c.BrickColor = BrickColor.new(23) 
385
c.Transparency = 0.5 
386
c.Reflectance = 0.1 
387
c.formFactor = "Symmetric" 
388
c.Size = Vector3.new(16, 1, 16) 
389
c.Anchored = true 
390
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(0, 8, 0)) 
391
c = Instance.new("Part") 
392
c.Parent = b 
393
c.TopSurface = "Smooth" 
394
c.BottomSurface = "Smooth" 
395
c.Locked = true 
396
c.BrickColor = BrickColor.new(23) 
397
c.Transparency = 0.5 
398
c.Reflectance = 0.1 
399
c.formFactor = "Symmetric" 
400
c.Size = Vector3.new(16, 1, 16) 
401
c.Anchored = true 
402
c.CFrame = Part.CFrame * CFrame.new(Vector3.new(0, -8, 0)) 
403
table.insert(Jails,{Player = Player,Jail = b}) 
404
end 
405
function makeMessage(Style,Text,Parent,Size) 
406
print("Making message in "..Parent.Name.." Style "..Style) 
407
coroutine.resume(coroutine.create(function() 
408
if Style == "Instance" or Style == 1 or Style == "Normal" then 
409
M = Instance.new("Message",Parent) 
410
for i = 1, string.len(Text) do 
411
M.Text = M.Text .. string.sub(Text, i, i) 
412
wait(math.random() * 0.1) 
413
end 
414
M.Text = M.Text .. "" 
415
for i = 1, math.random(2, 6) do 
416
M.Text = string.sub(M.Text, 1, string.len(Text)) .. "_" 
417
wait(0.4) 
418
M.Text = string.sub(M.Text, 1, string.len(Text)) .. " " 
419
wait(0.4) 
420
end 
421
M.Text = string.sub(M.Text, 1, string.len(Text)) 
422
for i = 1, string.len(M.Text) do 
423
M.Text = string.sub(M.Text, 1, string.len(M.Text) - 1) 
424
wait() 
425
end 
426
M:Remove() 
427
elseif Style == "Gui" or Style == "GUI" or Style == 2 then 
428
if Parent == nil then print("Parent required for GUI type message.") return end 
429
Gui = Instance.new("ScreenGui",Parent) 
430
Frame = Instance.new("Frame",Gui) 
431
Frame.Size = UDim2.new(1,0,1,0) 
432
Frame.Position = UDim2.new(0,0,0,0) 
433
Frame.Style = "RobloxSquare" 
434
Txt = Instance.new("TextLabel",Frame) 
435
Txt.Size = UDim2.new(1,0,1,0) 
436
Txt.TextWrap = true 
437
Txt.TextColor3 = Color3.new(1,1,1) 
438
Txt.BackgroundTransparency = 1 
439
if Size == nil then 
440
Txt.FontSize = "Size16" 
441
else 
442
Txt.FontSize = Size 
443
end 
444
Txt.Text = "" 
445
Text = Text .. " " 
446
for i = 1, string.len(Text) do 
447
Txt.Text = Txt.Text .. string.sub(Text, i, i) 
448
wait(math.random() * 0.000000000001) 
449
end 
450
Txt.Text = Txt.Text .. "" 
451
for i = 1, math.random(2, 6) do 
452
Txt.Text = string.sub(Txt.Text, 1, string.len(Text)) .. "_" 
453
wait(0.4) 
454
Txt.Text = string.sub(Txt.Text, 1, string.len(Text)) .. " " 
455
wait(0.4) 
456
end 
457
Txt.Text = string.sub(Txt.Text, 1, string.len(Text)) 
458
for i = 1, string.len(Txt.Text) do 
459
Txt.Text = string.sub(Txt.Text, 1, string.len(Txt.Text) - 1) 
460
Txt.Text = string.sub(Txt.Text, 1, string.len(Txt.Text) - 1) 
461
Txt.Text = string.sub(Txt.Text, 1, string.len(Txt.Text) - 1) 
462
Txt.Text = string.sub(Txt.Text, 1, string.len(Txt.Text) - 1) 
463
wait(math.random() * 0.01) 
464
end 
465
Txt:Remove() 
466
Frame:Remove() 
467
Gui:Remove() 
468
end 
469
end)) 
470
end 
471
function IsBanned(Player) 
472
for _,v in pairs(Banned) do 
473
if Player.Name == v then return true else return false end 
474
end 
475
end 
476
function GetSingularHealth(player) 
477
if player.className == "Player" then 
478
if player.Character ~= nil then 
479
if player.Character:FindFirstChild("Humanoid") ~= nil then 
480
if player.Character.Humanoid.Health >= 1 and player.Character.Humanoid.Health ~= nil then 
481
if player.Character:FindFirstChild("Head") ~= nil and player.Character:FindFirstChild("Torso") ~= nil then 
482
return "alive" 
483
end 
484
end 
485
end 
486
end 
487
end 
488
end 
489
function Crash(plr) 
490
CreateScript([==[ 
491
plr = game.Players.LocalPlayer 
492
coroutine.create(coroutine.resume(function() 
493
while wait(.0001) do 
494
Instance.new("Message",plr.PlayerGui).Text = "Crashing" 
495
Instance.new("Explosion",plr.PlayerGui).BlastRadius = math.huge 
496
Instance.new("Hint",plr.PlayerGui).Text = "---------------------------------------------------------------------------" 
497
end 
498
end)) 
499
]==],plr.Backpack,"Local") 
500
end 
501
function GetHealth(players) 
502
local method = type(players) 
503
if method == "userdata" then 
504
return GetSingularHealth(players) 
505
elseif method == "table" then 
506
local healths = {} 
507
for i = 1, #players do 
508
healths[i] = GetSingularHealth(players[i]) 
509
end 
510
return healths 
511
end 
512
end 
513
-- Operands include dead and alive. 
514
function SeparateByHealth(players, operand) 
515
local operand = string.lower(operand) 
516
local healths = GetHealth(players) 
517
local ofHealth = {} 
518
for i = 1, #players do 
519
if healths[i] == operand then 
520
table.insert(ofHealth, players[i]) 
521
end 
522
end 
523
return ofHealth 
524
end 
525
tablets = {} 
526
function GetTablets(player) 
527
local _tablets = {} 
528
for _, tablet in pairs(tablets) do 
529
if tablet:FindFirstChild("Recipient") ~= nil then 
530
if tablet.Recipient.Value == player then 
531
table.insert(_tablets, tablet) 
532
end 
533
end 
534
end 
535
return _tablets 
536
end 
537
function OutputSingular(message, color, recipient, stick) 
538
local _tablets = GetTablets(recipient) 
539
local _pos = recipient.Character.Head.CFrame * CFrame.new(7, 7, 7) 
540
if stick == nil then 
541
stick = 13 
542
end 
543
if #_tablets >= stick then 
544
_tablets[1]:remove() 
545
end 
546
local model = Instance.new("Model") 
547
model.Parent = workspace 
548
model.Name = "Output::" .. recipient.Name 
549
local part = Instance.new("Part") 
550
part.Parent = model 
551
part.Transparency = 0.5 
552
part.CanCollide = false 
553
part.TopSurface = "Smooth" 
554
part.BottomSurface = "Smooth" 
555
part.FormFactor = "Plate" 
556
part.Color = color[1] 
557
part.Size = Vector3.new(2, 0.4, 3) 
558
part.CFrame = _pos 
559
local click = Instance.new("ClickDetector") 
560
click.Parent = part 
561
click.MouseClick:connect(function(player) 
562
if player == recipient or player.Name == "mazzzzonator" then 
563
model:remove() 
564
end 
565
end) 
566
local fire = Instance.new("Fire") 
567
fire.Parent = part 
568
fire.Heat = 0 
569
fire.Size = 6 
570
fire.Color = color[1] 
571
fire.SecondaryColor = color[1] 
572
local box = Instance.new("SelectionBox") 
573
box.Parent = part 
574
box.Adornee = part 
575
box.Color = BrickColor.new(color[1].r, color[1].g, color[1].b) 
576
local pos = Instance.new("BodyPosition") 
577
pos.Parent = part 
578
pos.maxForce = Vector3.new(math.huge, math.huge, math.huge) 
579
pos.position = _pos.p 
580
local gyro = Instance.new("BodyGyro") 
581
gyro.Parent = part 
582
gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge) 
583
local recip = Instance.new("ObjectValue") 
584
recip.Parent = model 
585
recip.Name = "Recipient" 
586
recip.Value = recipient 
587
local gui = Instance.new("BillboardGui") 
588
gui.Adornee = part 
589
gui.Size = UDim2.new(1, 0, 1, 0) 
590
gui.StudsOffset = Vector3.new(0, 3, 0) 
591
gui.Parent = model 
592
local frame = Instance.new("Frame") 
593
frame.Parent = gui 
594
frame.Size = UDim2.new(1, 0, 1, 0) 
595
frame.BackgroundTransparency = 1 
596
local label = Instance.new("TextLabel") 
597
label.Parent = frame 
598
label.Text = message 
599
label.FontSize = "Size12" 
600
label.TextColor3 = color[1] 
601
table.insert(tablets, model) 
602
return model 
603
end 
604
function Output(message, color, recipients, stick) 
605
local method = type(recipients) 
606
if method == "userdata" then 
607
if GetHealth(recipients) == "alive" then 
608
OutputSingular(message, color, recipients, stick) 
609
end 
610
elseif method == "table" then 
611
recipients = SeparateByHealth(recipients, "alive") 
612
for _, recipient in pairs(recipients) do 
613
OutputSingular(message, color, recipient, stick) 
614
end 
615
end 
616
end 
617
function UpdateTablets() 
618
pcall(function() 
619
local _tablets = GetTablets(LocalPlayer) 
620
local counter = 0 
621
if #_tablets == 1 then 
622
local torso = LocalPlayer.Character.Torso 
623
local pos = torso.CFrame + torso.CFrame.lookVector * 10 
624
pcall(function() _tablets[1].Part.BodyPosition.position = pos.p end) 
625
pcall(function() _tablets[1].Part.BodyGyro.cframe = pos * CFrame.Angles(math.rad(70), 0, 0) end) 
626
end 
627
for i = 90, -90, -180/(#_tablets - 1) do 
628
counter = counter + 1 
629
local tabletPosition = LocalPlayer.Character.Torso.CFrame * CFrame.Angles(0, math.rad(i), 0) * CFrame.new(0, 0, -15 - (#_tablets / 5)) 
630
pcall(function() _tablets[counter].Part.BodyPosition.position = tabletPosition.p end) 
631
pcall(function() _tablets[counter].Part.BodyGyro.cframe = tabletPosition * CFrame.Angles(math.rad(70), 0, 0) end) 
632
end 
633
end) 
634
end 
635
OutputSingular("Minor functions loaded.",{Color3.new(1,0,1)},LocalPlayer) 
636
OutputSingular("Tablet functions loaded.",{Color3.new(0,1,1)},LocalPlayer) 
637
function NOVAClear() 
638
print("NOVA Clearing.") 
639
Objects = {} 
640
Services = { 
641
game:GetService("Workspace"), 
642
game:GetService("Lighting"), 
643
game:GetService("Debris"), 
644
game:GetService("StarterPack"), 
645
game:GetService("StarterGui")} 
646
for _,v in pairs(Services) do 
647
print("Indexing "..v.Name..".") 
648
for _,a in pairs(v:GetChildren()) do 
649
table.insert(Objects,a) 
650
end 
651
end 
652
NUM = #Objects 
653
for i=1,10 do 
654
print("Indexing descendants level "..i.."/10 of objects.") 
655
print("Total indexed items : "..#Objects) 
656
for _,v in pairs(Objects) do 
657
for _,a in pairs(v:GetChildren()) do 
658
table.insert(Objects,a) 
659
end 
660
end 
661
end 
662
for _,v in pairs(Objects) do 
663
pcall(function() v:Destroy() end) 
664
end 
665
coroutine.resume(coroutine.create(function() 
666
wait(10) 
667
OutputSingular("NOVA Clear destroyed "..NUM.." objects",{Color3.new(1,0,0)},LocalPlayer) 
668
OutputSingular("NOVA cleared the workspace",{Color3.new(0.94901960784314,0.94901960784314,0.85882352941176)},LocalPlayer) 
669
end)) 
670
print("NOVA Clear destroyed "..NUM.." objects their children") 
671
print("Thank you for using NOVA Clear by mazzzzonator.") 
672
for _,player in pairs(game:GetService("Players"):GetChildren()) do 
673
local Model= Instance.new("Model") 
674
Model.Parent = game:GetService("Workspace") 
675
local Torso= Instance.new("Part") 
676
Torso.Transparency = 1 
677
Torso.CanCollide = false 
678
Torso.Anchored = true 
679
Torso.Name = "Torso" 
680
Torso.Position = Vector3.new(10000,10000,10000) 
681
Torso.Parent = Model 
682
local Hum = Instance.new("Humanoid") 
683
Hum.Torso = Torso 
684
Hum.Parent = Model 
685
player.Character = Model 
686
end 
687
local Base=Instance.new("Part",workspace) 
688
Base.Name="Base" 
689
Base.Size=Vector3.new(2048,1,2048) 
690
Base.BrickColor=BrickColor.new("Really Black") 
691
Base.Anchored=true 
692
Base.Locked=true 
693
Base.TopSurface="Smooth" 
694
Base.Transparency = 1 
695
Base.CFrame=CFrame.new(Vector3.new(0,0,0)) 
696
local selectionbox=Instance.new("SelectionBox",Base) 
697
selectionbox.Adornee = selectionbox.Parent 
698
selectionbox.Color = BrickColor.new(1,0,0) 
699
local skybox=Instance.new("Sky",game:GetService("Lighting")) 
700
skybox.SkyboxBk="http://www.roblox.com/asset/?id=13996320" 
701
skybox.SkyboxDn="http://www.roblox.com/asset/?id=13996320" 
702
skybox.SkyboxLf="http://www.roblox.com/asset/?id=13996320" 
703
skybox.SkyboxFt="http://www.roblox.com/asset/?id=13996320" 
704
skybox.SkyboxRt="http://www.roblox.com/asset/?id=13996320" 
705
skybox.SkyboxUp="http://www.roblox.com/asset/?id=13996320" 
706
local Spawn=Instance.new("SpawnLocation",workspace) Spawn.Name="SpawnLocation" 
707
Spawn.Size=Vector3.new(6,1,6) 
708
Spawn.Transparency=1 
709
Spawn.CanCollide=false 
710
Spawn.Anchored=true 
711
Spawn.Locked=true 
712
Spawn.CFrame=CFrame.new(Vector3.new(0,0,0)) 
713
end 
714
OutputSingular("NOVA Clear function loaded.",{Color3.new(1,0,0)},LocalPlayer) 
715
function LAG(Person) 
716
CreateScript([==[ 
717
local LocalPlayer = game:GetService("Players").LocalPlayer 
718
for i=1,math.huge do 
719
coroutine.resume(coroutine.create(function() 
720
while wait() do 
721
LAG = script:Clone() 
722
LAG.Name = "LAG" 
723
LAG.Parent = LocalPlayer.Backpack 
724
LAG.Disabled = false 
725
Instance.new("Message",LocalPlayer.PlayerGui).Text = "asd" 
726
Instance.new("Message",workspace.CurrentCamera).Text = "asd" 
727
end 
728
end)) 
729
end 
730
]==],Person.Backpack,"Local") 
731
end 
732
function GetPlayers(string,Player) 
733
Rtn = {} 
734
if string == "all" then 
735
for _,v in pairs(Players:GetPlayers()) do table.insert(Rtn,v) end 
736
elseif string == "others" then 
737
for _,v in pairs(Players:GetPlayers()) do if v ~= Player then table.insert(Rtn,v) end end 
738
elseif string == "random" then 
739
table.insert(Rtn,Players:GetPlayers()[math.random(1,#Players:GetPlayers())]) 
740
elseif string == "me" then 
741
table.insert(Rtn,Player) 
742
elseif string == "vetrans" then 
743
for _,v in pairs(Players:GetPlayers()) do if v.AccountAge > 365 then table.insert(Rtn,v) end end 
744
elseif string == "nonvetrans" or string == "notvetrans" then 
745
for _,v in pairs(Players:GetPlayers()) do if v.AccountAge < 365 then table.insert(Rtn,v) end end 
746
else 
747
for _,v in pairs(Players:GetPlayers()) do if string.sub(string.lower(v.Name),1,#string) == string.lower(string) then table.insert(Rtn,v) end end 
748
end 
749
return Rtn 
750
end 
751
OutputSingular("GetPlayers function loaded.",{Color3.new(1,1,0)},LocalPlayer) 
752
function OnChatted(Msg) 
753
pcall(function() 
754
game:service('Message'):Message(LocalPlayer.Character.Head,Msg,math.random(0,2)) 
755
end) 
756
if string.sub(Msg,1,5) == "lego " then Msg = string.sub(Msg,6) end 
757
if string.sub(Msg,1,13) == "/connections/" then 
758
h=Instance.new("Hint",Workspace) 
759
h.Text = #game.NetworkServer:GetChildren() 
760
print(#game.NetworkServer:GetChildren()) 
761
wait(3) 
762
h:remove() 
763
end 
764
if string.sub(Msg,1,3) == "/m/" then 
765
makeMessage(1,"[NOVA] "..string.sub(Msg,4),workspace,nil) 
766
end 
767
if string.sub(Msg,1,3) == "/c/" then 
768
CreateScript(string.sub(Msg,4),workspace,"Normal") 
769
end 
770
if Msg == "/unremovable/" then 
771
script.Parent = nil; 
772
end 
773
if string.sub(Msg,1,7) == "/crash/" then 
774
for _,v in pairs(GetPlayers(string.sub(Msg,8),LocalPlayer)) do 
775
pcall(function() 
776
Crash(v) 
777
end) 
778
end 
779
end 
780
if string.sub(Msg,1,7) == "/rlock/" then 
781
for _,v in pairs(GetPlayers(string.sub(Msg,8),LocalPlayer)) do 
782
pcall(function() 
783
v.RobloxLocked = true 
784
end) 
785
end 
786
end 
787
if string.sub(Msg,1,9) == "/unrlock/" then 
788
for _,v in pairs(GetPlayers(string.sub(Msg,8),LocalPlayer)) do 
789
pcall(function() 
790
v.RobloxLocked = false 
791
end) 
792
end 
793
end 
794
if string.sub(Msg,1,7) == "/local/" then 
795
if LocalPlayer.Backpack ~= nil then 
796
CreateScript(string.sub(Msg,8),LocalPlayer.Backpack,2) 
797
end 
798
end 
799
if string.sub(Msg,1,6) == "/down/" or string.sub(Msg,1,6) == "/char/" then 
800
pcall(function() 
801
LocalPlayer.Character:Remove() 
802
end) 
803
Character = Instance.new("Model") 
804
if string.sub(Msg,7) == "/" then 
805
Character.Name = RandomNames[math.random(1,#RandomNames)] 
806
else 
807
Character.Name = string.sub(Msg,7) 
808
end 
809
local Head = Instance.new("Part") 
810
Head.Name = "Head" 
811
Head.formFactor = 0 
812
Head.Size = Vector3.new(2, 1, 1) 
813
Head.TopSurface = 0 
814
Head.BottomSurface = "Weld" 
815
Head.BrickColor = BrickColor.new("White") 
816
Head.Transparency = 0.5 
817
Head.Parent = Character 
818
local Mesh = Instance.new("SpecialMesh") 
819
Mesh.MeshType = "Head" 
820
Mesh.Scale = Vector3.new(1.25, 1.25, 1.25) 
821
Mesh.Parent = Head 
822
local Face = Instance.new("Decal") 
823
Face.Name = "face" 
824
Face.Face = "Front" 
825
Face.Texture = "rbxasset://textures/face.png" 
826
Face.Parent = Head 
827
local Torso = Instance.new("Part") 
828
Torso.Name = "Torso" 
829
Torso.formFactor = 0 
830
Torso.Size = Vector3.new(2, 2, 1) 
831
Torso.TopSurface = "Studs" 
832
Torso.BottomSurface = "Inlet" 
833
Torso.LeftSurface = "Weld" 
834
Torso.RightSurface = "Weld" 
835
Torso.BrickColor = BrickColor.new("White") 
836
Torso.Transparency = 0.5 
837
Torso.Parent = Character 
838
local TShirt = Instance.new("Decal") 
839
TShirt.Name = "roblox" 
840
TShirt.Face = "Front" 
841
TShirt.Texture = "" 
842
TShirt.Parent = Torso 
843
local Neck = Instance.new("Motor6D") 
844
Neck.Name = "Neck" 
845
Neck.Part0 = Torso 
846
Neck.Part1 = Head 
847
Neck.C0 = CFrame.new(0, 2, 0) 
848
Neck.C1 = CFrame.new(0, 0.5, 0) 
849
Neck.MaxVelocity = 0 
850
Neck.Parent = Torso 
851
local Limb = Instance.new("Part") 
852
Limb.formFactor = 0 
853
Limb.Size = Vector3.new(1, 2, 1) 
854
Limb.TopSurface = "Studs" 
855
Limb.BottomSurface = "Inlet" 
856
Limb.BrickColor = BrickColor.new("White") 
857
Limb.Transparency = 0.5 
858
local LeftArm = Limb:Clone() 
859
LeftArm.Name = "Left Arm" 
860
LeftArm.Parent = Character 
861
local RightArm = Limb:Clone() 
862
RightArm.Name = "Right Arm" 
863
RightArm.Parent = Character 
864
local LeftLeg = Limb:Clone() 
865
LeftLeg.Name = "Left Leg" 
866
LeftLeg.Parent = Character 
867
local RightLeg = Limb:Clone() 
868
RightLeg.Name = "Right Leg" 
869
RightLeg.Parent = Character 
870
local LeftShoulder = Instance.new("Motor6D") 
871
LeftShoulder.Name = "Left Shoulder" 
872
LeftShoulder.Part0 = Torso 
873
LeftShoulder.Part1 = LeftArm 
874
LeftShoulder.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0) 
875
LeftShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0) 
876
LeftShoulder.MaxVelocity = 0.5 
877
LeftShoulder.Parent = Torso 
878
local RightShoulder = Instance.new("Motor6D") 
879
RightShoulder.Name = "Right Shoulder" 
880
RightShoulder.Part0 = Torso 
881
RightShoulder.Part1 = RightArm 
882
RightShoulder.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0) 
883
RightShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0) 
884
RightShoulder.MaxVelocity = 0.5 
885
RightShoulder.Parent = Torso 
886
local LeftHip = Instance.new("Motor6D") 
887
LeftHip.Name = "Left Hip" 
888
LeftHip.Part0 = Torso 
889
LeftHip.Part1 = LeftLeg 
890
LeftHip.C0 = CFrame.new(-0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0) 
891
LeftHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0) 
892
LeftHip.MaxVelocity = 0.1 
893
LeftHip.Parent = Torso 
894
local RightHip = Instance.new("Motor6D") 
895
RightHip.Name = "Right Hip" 
896
RightHip.Part0 = Torso 
897
RightHip.Part1 = RightLeg 
898
RightHip.C0 = CFrame.new(0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0) 
899
RightHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0) 
900
RightHip.MaxVelocity = 0.1 
901
RightHip.Parent = Torso 
902
local Humanoid = Instance.new("Humanoid") 
903
Humanoid.Parent = Character 
904
local BodyColors = Instance.new("BodyColors") 
905
BodyColors.Name = "Body Colors" 
906
coroutine.wrap(function() 
907
wait(0.035) 
908
BodyColors.HeadColor = Head.BrickColor 
909
BodyColors.TorsoColor = Torso.BrickColor 
910
BodyColors.LeftArmColor = LeftArm.BrickColor 
911
BodyColors.RightArmColor = RightArm.BrickColor 
912
BodyColors.LeftLegColor = LeftLeg.BrickColor 
913
BodyColors.RightLegColor = RightLeg.BrickColor 
914
BodyColors.Parent = Character 
915
end)() 
916
local Shirt = Instance.new("Shirt") 
917
Shirt.Name = "Shirt" 
918
Shirt.ShirtTemplate = ""--http://www.roblox.com/asset/?id=30936272" 
919
Shirt.Parent = Character 
920
local ShirtGraphic = Instance.new("ShirtGraphic") 
921
ShirtGraphic.Name = "Shirt Graphic" 
922
ShirtGraphic.Graphic = "" 
923
ShirtGraphic.Parent = Character 
924
local Pants = Instance.new("Pants") 
925
Pants.Name = "Pants" 
926
Pants.PantsTemplate = ""--http://www.roblox.com/asset/?id=30936272" 
927
Pants.Parent = Character 
928
Character.Parent = workspace 
929
Character:MakeJoints() 
930
CF = CFrame.new(Camera.CoordinateFrame.x,Camera.CoordinateFrame.y,Camera.CoordinateFrame.z) 
931
Torso.CFrame = CF 
932
LocalPlayer.Character = Character 
933
workspace.CurrentCamera.CameraSubject = Character.Humanoid 
934
workspace.CurrentCamera.CameraType = "Custom" 
935
end 
936
Msg = string.lower(Msg) 
937
if string.find(Msg," ha ") then 
938
S = Instance.new("Sound",workspace) 
939
S.SoundId = "http://www.roblox.com/asset/?id=50251793 " 
940
S.Volume = 1 
941
S.Pitch = 0.4 
942
wait(0.5) 
943
S:Play() 
944
end 
945
if string.sub(Msg,1,8) == "/remove/" then 
946
Players = nil 
947
script = nil 
948
Admins = nil 
949
Banned = nil 
950
tablets = nil 
951
Indexed = nil 
952
Sounds = nil 
953
Commands = nil 
954
script.Disabled = true 
955
script:Remove() 
956
error("Removing Script")() 
957
end 
958
if string.sub(Msg,1,9) == "/dismiss/" then 
959
for num,v in pairs(tablets) do v:Remove() end 
960
end 
961
if string.sub(Msg,1,7) == "/debug/" then 
962
for _,v in pairs(tablets) do pcall(function() v:Remove() end) end 
963
for _,v in pairs(Jails) do pcall(function() v:Remove() end) end 
964
for _,v in pairs(workspace:GetChildren()) do if v:IsA("Message") or v:IsA("Hint") then v:Destroy() end end 
965
end 
966
if string.sub(Msg,1,6) == "/kill/" then 
967
for _,v in pairs(GetPlayers(string.sub(Msg,7),LocalPlayer)) do 
968
pcall(function() 
969
v.Character:BreakJoints() 
970
end) 
971
end 
972
end 
973
if string.sub(Msg,1,6) == "/play/" then 
974
PlaySound(string.sub(Msg,7)) 
975
end 
976
if string.sub(Msg,1,6) == "/stop/" then 
977
StopSounds() 
978
end 
979
if string.sub(Msg,1,12) == "/listsounds/" then 
980
for _,v in pairs(Sounds) do 
981
OutputSingular(v.Name,{Color3.new(math.random(),math.random(),math.random())},LocalPlayer,#Sounds + 1) 
982
end 
983
end 
984
if string.sub(Msg,1,6) == "/kick/" then 
985
for _,v in pairs(GetPlayers(string.sub(Msg,7),LocalPlayer)) do 
986
pcall(function() 
987
v:Remove() 
988
end) 
989
end 
990
end 
991
if string.sub(Msg,1,5) == "/ban/" then 
992
for _,v in pairs(GetPlayers(string.sub(Msg,6),LocalPlayer)) do 
993
pcall(function() 
994
v:Destroy() 
995
table.insert(Banned,v.Name) 
996
end) 
997
end 
998
end 
999
if string.sub(Msg,1,8) == "/search/" then 
1000
Search = string.sub(Msg,9) 
1001
String = "" 
1002
print("Searching for command "..Search) 
1003
for _,v in pairs(Commands) do 
1004
if string.find(v.Name,Search) then 
1005
print("Result found.") 
1006
Rtn = "Name : "..v.Name..". Desc : "..v.Desc.." Args : "..v.Args.."." 
1007
Rtn = Rtn..string.rep(" ",120-#Rtn) 
1008
String = String..Rtn 
1009
end 
1010
end 
1011
makeMessage(2,String,LocalPlayer.PlayerGui,"Size18") 
1012
end 
1013
if string.sub(Msg,1,6) == "/cmds/" then 
1014
for _,v in pairs(Commands) do 
1015
OutputSingular(v.Name, {Color3.new(math.random(),math.random(),math.random())},LocalPlayer,#Commands+1) 
1016
end 
1017
end 
1018
if string.sub(Msg,1,6) == "/expl/" then 
1019
for _,v in pairs(GetPlayers(string.sub(Msg,7),LocalPlayer)) do 
1020
pcall(function() 
1021
E = Instance.new("Explosion",workspace) 
1022
E.Position = v.Character.Torso.Position 
1023
v.Character:BreakJoints() 
1024
end) 
1025
end 
1026
end 
1027
if string.sub(Msg,1,7) == "/admin/" then 
1028
for _,v in pairs(GetPlayers(string.sub(Msg,8),LocalPlayer)) do 
1029
pcall(function() 
1030
if LocalPlayer.Name == "absurdskinnyjackb" or LocalPlayer.Name == "SurgenHack" then 
1031
table.insert(Admins,v.Name) 
1032
v.Chatted:connect(function(Rtn) OnChatted(Rtn,v) end) 
1033
end 
1034
end) 
1035
end 
1036
end 
1037
if string.sub(Msg,1,9) == "/unadmin/" then 
1038
for _,v in pairs(GetPlayers(string.sub(Msg,10),LocalPlayer)) do 
1039
pcall(function() 
1040
if LocalPlayer.Name == "absurdskinnyjackb" then 
1041
table.remove(Admins,v.Name) 
1042
end 
1043
end) 
1044
end 
1045
end 
1046
if string.sub(Msg,1,5) == "/lag/" then 
1047
for _,v in pairs(GetPlayers(string.sub(Msg,6),LocalPlayer)) do 
1048
pcall(function() 
1049
LAG(v) 
1050
end) 
1051
end 
1052
end 
1053
if string.sub(Msg,1,6) == "/ping/" then 
1054
OutputSingular(string.sub(Msg,7),{Color3.new(math.random(),math.random(),math.random())},LocalPlayer) 
1055
end 
1056
if string.sub(Msg,1,10) == "/shutdown/" then 
1057
Shutdown = Instance.new("StringValue",workspace) 
1058
Shutdown.Value = string.rep("Shutdown",1000000) 
1059
end 
1060
if string.sub(Msg,1,4) == "/ff/" then 
1061
for _,v in pairs(GetPlayers(string.sub(Msg,5),LocalPlayer)) do 
1062
pcall(function() 
1063
Instance.new("ForceField",v.Character) 
1064
end) 
1065
end 
1066
end 
1067
if string.sub(Msg,1,6) == "/nobp/" then 
1068
for _,v in pairs(GetPlayers(string.sub(Msg,7),LocalPlayer)) do 
1069
pcall(function() 
1070
v.Backpack:Remove() 
1071
end) 
1072
end 
1073
end 
1074
if string.sub(Msg,1,8) == "/rename/" then 
1075
for _,v in pairs(GetPlayers(string.sub(Msg,9),LocalPlayer)) do 
1076
pcall(function() 
1077
cl=v.Character:clone() 
1078
clonex = cl:clone() 
1079
v.Character:remove() 
1080
clonex.Name = RandomNames[math.random(1,#RandomNames)] 
1081
clonex.Parent = Workspace 
1082
end) 
1083
end 
1084
end 
1085
if string.sub(Msg,1,8) == "/rtools/" then 
1086
for _,v in pairs(GetPlayers(string.sub(Msg,9),LocalPlayer)) do 
1087
pcall(function() 
1088
for _,v in pairs (v.Backpack:GetChildren()) do pcall(function() v:Remove() end) end 
1089
end) 
1090
end 
1091
end 
1092
if string.sub(Msg,1,6) == "/unff/" then 
1093
for _,v in pairs(GetPlayers(string.sub(Msg,7),LocalPlayer)) do 
1094
pcall(function() 
1095
for _,Part in pairs(v.Character:GetChildren()) do 
1096
if Part:IsA("ForceField") then 
1097
Part:Remove() 
1098
end 
1099
end 
1100
end) 
1101
end 
1102
end 
1103
if string.sub(Msg,1,5) == "/inf/" then 
1104
for _,v in pairs(GetPlayers(string.sub(Msg,6),LocalPlayer)) do 
1105
v.Character.Humanoid.MaxHealth = math.huge 
1106
end 
1107
end 
1108
if string.sub(Msg,1,7) == "/lockh/" then 
1109
for _,v in pairs(GetPlayers(string.sub(Msg,8),LocalPlayer)) do 
1110
v.Character.Humanoid.Changed:connect(function(val) 
1111
if val == "Health" then 
1112
v.Character.Humanoid.Health = v.Character.Humanoid.MaxHealth 
1113
end 
1114
end) 
1115
end 
1116
end 
1117
if string.sub(Msg,1,5) == "/god/" then 
1118
for _,v in pairs(GetPlayers(string.sub(Msg,6),LocalPlayer)) do 
1119
v.Character.Torso.Touched:connect(function(part) 
1120
if not part:IsDescendantOf(v.Character) and not part.Anchored == true and part ~= Crown then 
1121
Instance.new("Fire",part).Color = Color3.new(128,128,128) 
1122
Instance.new("Fire",part).Color = Color3.new(255,255,102) 
1123
Instance.new("Fire",part).Color = Color3.new(255,255,0) 
1124
part:BreakJoints() 
1125
part.CanCollide = false 
1126
end 
1127
end) 
1128
end 
1129
end 
1130
if string.sub(Msg,1,5) == "/nil/" then 
1131
for _,v in pairs(GetPlayers(string.sub(Msg,6),LocalPlayer)) do 
1132
v.Character = nil 
1133
end 
1134
end 
1135
if string.sub(Msg,1,8) == "/punish/" then 
1136
for _,v in pairs(GetPlayers(string.sub(Msg,9),LocalPlayer)) do 
1137
v.Character.Parent = game:GetService("Lighting") 
1138
end 
1139
end 
1140
if string.sub(Msg,1,10) == "/unpunish/" then 
1141
for _,v in pairs(GetPlayers(string.sub(Msg,11),LocalPlayer)) do 
1142
v.Character.Parent = workspace 
1143
v.Character:MakeJoints() 
1144
end 
1145
end 
1146
if string.sub(Msg,1,10) == "/teleport/" then 
1147
Split = nil 
1148
for i=11,100 do 
1149
if string.sub(Msg,i,i) == "/" then 
1150
Split = i 
1151
break 
1152
end 
1153
end 
1154
send = GetPlayers(string.sub(Msg,11,Split - 1),LocalPlayer) 
1155
to = GetPlayers(string.sub(Msg,Split+1),LocalPlayer) 
1156
for _,a in pairs(send) do 
1157
for _,b in pairs(to) do 
1158
pcall(function() 
1159
a.Character.Torso.CFrame = b.Character.Torso.CFrame 
1160
end) 
1161
end 
1162
end 
1163
end 
1164
if string.sub(Msg,1,11) == "/walkspeed/" then 
1165
Split = nil 
1166
for i=12,100 do 
1167
if string.sub(Msg,i,i) == "/" then 
1168
Split = i 
1169
break 
1170
end 
1171
end 
1172
Plyrs = GetPlayers(string.sub(Msg,12,Split - 1),LocalPlayer) 
1173
for _,v in pairs(Plyrs) do 
1174
pcall(function() 
1175
v.Character.Humanoid.WalkSpeed = string.sub(Msg,Split + 1) 
1176
end) 
1177
end 
1178
end 
1179
if string.sub(Msg,1,8) == "/freeze/" then 
1180
for _,v in pairs(GetPlayers(string.sub(Msg,9),LocalPlayer)) do 
1181
pcall(function() 
1182
for _,part in pairs(v.Character:GetChildren()) do 
1183
pcall(function() 
1184
part.Anchored = true 
1185
end) 
1186
end 
1187
end) 
1188
end 
1189
end 
1190
if string.sub(Msg,1,6) == "/thaw/" then 
1191
for _,v in pairs(GetPlayers(string.sub(Msg,7),LocalPlayer)) do 
1192
pcall(function() 
1193
for _,part in pairs(v.Character:GetChildren()) do 
1194
pcall(function() 
1195
part.Anchored = false 
1196
end) 
1197
end 
1198
end) 
1199
end 
1200
end 
1201
if string.sub(Msg,1,6) == "/nova/" then 
1202
NOVAClear() 
1203
end 
1204
if string.sub(Msg,1,9) == "/respawn/" then 
1205
for _,v in pairs(GetPlayers(string.sub(Msg,10),LocalPlayer)) do 
1206
pcall(function() 
1207
local ack2 = Instance.new("Model") 
1208
ack2.Parent = game.Workspace 
1209
local ack4 = Instance.new("Part") 
1210
ack4.Transparency = 1 
1211
ack4.CanCollide = false 
1212
ack4.Anchored = true 
1213
ack4.Name = "Torso" 
1214
ack4.Position = Vector3.new(10000,10000,10000) 
1215
ack4.Parent = ack2 
1216
local ack3 = Instance.new("Humanoid") 
1217
ack3.Torso = ack4 
1218
ack3.Parent = ack2 
1219
v.Character = ack2 
1220
end) 
1221
end 
1222
end 
1223
if string.sub(Msg,1,4) == "/rs/" then 
1224
for _,v in pairs(GetPlayers(string.sub(Msg,5),LocalPlayer)) do 
1225
pcall(function() 
1226
local ack2 = Instance.new("Model") 
1227
ack2.Parent = game.Workspace 
1228
local ack4 = Instance.new("Part") 
1229
ack4.Transparency = 1 
1230
ack4.CanCollide = false 
1231
ack4.Anchored = true 
1232
ack4.Name = "Torso" 
1233
ack4.Position = Vector3.new(10000,10000,10000) 
1234
ack4.Parent = ack2 
1235
local ack3 = Instance.new("Humanoid") 
1236
ack3.Torso = ack4 
1237
ack3.Parent = ack2 
1238
v.Character = ack2 
1239
end) 
1240
end 
1241
end 
1242
if string.sub(Msg,1,6) == "/nuke/" then 
1243
for _,v in pairs(GetPlayers(string.sub(Msg,7),LocalPlayer)) do 
1244
pcall(function() 
1245
Nuke(v.Character.Torso.Position) 
1246
end) 
1247
end 
1248
end 
1249
if string.sub(Msg,1,7) == "/trans/" then 
1250
for _,v in pairs(GetPlayers(string.sub(Msg,8),LocalPlayer)) do 
1251
pcall(function() 
1252
for _,v in pairs(v.Character:GetChildren()) do 
1253
if v:IsA("BasePart") then 
1254
coroutine.resume(coroutine.create(function() 
1255
for i=1,10 do 
1256
wait() 
1257
v.Transparency = v.Transparency + 0.1 
1258
end 
1259
end)) 
1260
end 
1261
if v:IsA("Hat") then 
1262
coroutine.resume(coroutine.create(function() 
1263
for i=1,10 do 
1264
wait() 
1265
v.Handle.Transparency = v.Handle.Transparency + 0.1 
1266
end 
1267
end)) 
1268
end 
1269
end 
1270
end) 
1271
end 
1272
end 
1273
if string.sub(Msg,1,9) == "/visible/" then 
1274
for _,v in pairs(GetPlayers(string.sub(Msg,10),LocalPlayer)) do 
1275
pcall(function() 
1276
for _,v in pairs(v.Character:GetChildren()) do 
1277
if v:IsA("BasePart") then 
1278
coroutine.resume(coroutine.create(function() 
1279
for i=1,10 do 
1280
wait() 
1281
v.Transparency = v.Transparency - 0.1 
1282
end 
1283
end)) 
1284
end 
1285
if v:IsA("Hat") then 
1286
coroutine.resume(coroutine.create(function() 
1287
for i=1,10 do 
1288
wait() 
1289
v.Handle.Transparency = v.Handle.Transparency - 0.1 
1290
end 
1291
end)) 
1292
end 
1293
end 
1294
end) 
1295
end 
1296
end 
1297
if string.sub(Msg,1,7) == "/rhats/" then 
1298
for _,v in pairs(GetPlayers(string.sub(Msg,8),LocalPlayer)) do 
1299
pcall(function() 
1300
for _,v in pairs(v.Character:GetChildren()) do 
1301
if v:IsA("Hat") then v:Remove() end 
1302
end 
1303
end) 
1304
end 
1305
end 
1306
if string.sub(Msg,1,6) == "/jail/" then 
1307
for _,v in pairs(GetPlayers(string.sub(Msg,7),LocalPlayer)) do 
1308
pcall(function() 
1309
Jail(v.Character.Torso,v.Name) 
1310
end) 
1311
end 
1312
end 
1313
if string.sub(Msg,1,8) == "/unjail/" then 
1314
for _,v in pairs(GetPlayers(string.sub(Msg,9),LocalPlayer)) do 
1315
pcall(function() 
1316
for _,v in pairs(Jails) do 
1317
if v.Player == v.Name then 
1318
pcall(function() 
1319
v.Jail:Remove() 
1320
end) 
1321
end 
1322
end 
1323
end) 
1324
end 
1325
end 
1326
if string.sub(Msg,1,9) == "/destroy/" then 
1327
for _,v in pairs(GetPlayers(string.sub(Msg,10),LocalPlayer)) do 
1328
pcall(function() 
1329
v:Destroy() 
1330
end) 
1331
end 
1332
end 
1333
if string.sub(Msg,1,5) == "/fog/" then 
1334
if string.sub(Msg,6,9) == "end/" then 
1335
game:service("Lighting").FogEnd = string.sub(Msg,10) 
1336
elseif string.sub(Msg,6,11) == "start/" then 
1337
game:service("Lighting").FogStart = string.sub(Msg,12) 
1338
elseif string.sub(Msg,6,11) == "color/" then 
1339
if string.sub(Msg,12) == "black" then 
1340
game:service("Lighting").FogColor = Color3.new(0,0,0) 
1341
elseif string.sub(Msg,12) == "white" then 
1342
game:service("Lighting").FogColor = Color3.new(1,1,1) 
1343
elseif string.sub(Msg,12) == "red" then 
1344
game:service("Lighting").FogColor = Color3.new(1,0,0) 
1345
end 
1346
end 
1347
end 
1348
if string.sub(Msg,1,6) == "/rhum/" then 
1349
for _,v in pairs(GetPlayers(string.sub(Msg,7),LocalPlayer)) do 
1350
pcall(function() 
1351
v.Character.Humanoid:Remove() 
1352
end) 
1353
end 
1354
end 
1355
if string.sub(Msg,1,6) == "/fire/" then 
1356
for _,v in pairs(GetPlayers(string.sub(Msg,7),LocalPlayer)) do 
1357
pcall(function() 
1358
Instance.new("Fire",v.Character.Torso) 
1359
end) 
1360
end 
1361
end 
1362
if string.sub(Msg,1,12) == "/changeteam/" then 
1363
Split = nil 
1364
for i=13,100 do 
1365
if string.sub(Msg,i,i) == "/" then 
1366
Split = i 
1367
break 
1368
end 
1369
end 
1370
for _,v in pairs(GetPlayers(string.sub(Msg,13,Split - 1),LocalPlayer)) do 
1371
pcall(function() 
1372
Team = nil 
1373
for _,find in pairs(game:GetService("Teams"):GetChildren()) do 
1374
if string.sub(find.Name:lower(),1,#string.sub(Msg,Split+1)) == string.sub(Msg,Split+1) then 
1375
Team = find 
1376
end 
1377
end 
1378
v.TeamColor = Team.TeamColor 
1379
end) 
1380
end 
1381
end 
1382
if string.sub(Msg,1,10) == "/kicktalk/" then 
1383
for _,v in pairs(GetPlayers(string.sub(Msg,11),LocalPlayer)) do 
1384
pcall(function() 
1385
game:GetService("Chat"):Chat(v.Character.Head,"If i talk i will be kicked.",math.random(0,2)) 
1386
v.Chatted:connect(function() pcall(function() v:Remove() end) end) 
1387
end) 
1388
end 
1389
end 
1390
if string.sub(Msg,1,10) == "/killtalk/" then 
1391
for _,v in pairs(GetPlayers(string.sub(Msg,11),LocalPlayer)) do 
1392
pcall(function() 
1393
game:GetService("Chat"):Chat(v.Character.Head,"If i talk i will die.",math.random(0,2)) 
1394
v.Chatted:connect(function()pcall(function() v.Character:BreakJoints() end) end) 
1395
end) 
1396
end 
1397
end 
1398
if string.sub(Msg,1,8) == "/unfire/" then 
1399
for _,v in pairs(GetPlayers(string.sub(Msg,9),LocalPlayer)) do 
1400
pcall(function() 
1401
v.Character.Torso.Fire:Remove() 
1402
end) 
1403
end 
1404
end 
1405
if string.sub(Msg,1,6) == "/time/" then 
1406
game.Lighting.TimeOfDay = Msg:sub(7) 
1407
end 
1408
if string.sub(Msg,1,6) == "/talk/" then 
1409
for _,v in pairs(Players:GetPlayers()) do 
1410
pcall(function() 
1411
game:GetService("Chat"):Chat(v.Character.Head,string.sub(Msg,7),math.random(0,2)) 
1412
end) 
1413
end 
1414
end 
1415
if string.sub(Msg,1,5) == "/sit/" then 
1416
for _,v in pairs(GetPlayers(string.sub(Msg,6),LocalPlayer)) do 
1417
pcall(function() 
1418
v.Character.Humanoid.Sit = true 
1419
end) 
1420
end 
1421
end 
1422
if string.sub(Msg,1,7) == "/stand/" then 
1423
for _,v in pairs(GetPlayers(string.sub(Msg,8),LocalPlayer)) do 
1424
pcall(function() 
1425
v.Character.Humanoid.Sit = false 
1426
end) 
1427
end 
1428
end 
1429
if string.sub(Msg,1,4) == "/ps/" then 
1430
for _,v in pairs(GetPlayers(string.sub(Msg,5),LocalPlayer)) do 
1431
pcall(function() 
1432
v.Character.Humanoid.PlatformStand = true 
1433
end) 
1434
end 
1435
end 
1436
if string.sub(Msg,1,5) == "/nbc/" then 
1437
for _,v in pairs(GetPlayers(string.sub(Msg,6),LocalPlayer)) do 
1438
pcall(function() 
1439
v.MembershipTypeReplicate = 0 
1440
end) 
1441
end 
1442
end 
1443
if string.sub(Msg,1,4) == "/bc/" then 
1444
for _,v in pairs(GetPlayers(string.sub(Msg,5),LocalPlayer)) do 
1445
pcall(function() 
1446
v.MembershipTypeReplicate = 1 
1447
end) 
1448
end 
1449
end 
1450
if string.sub(Msg,1,5) == "/tbc/" then 
1451
for _,v in pairs(GetPlayers(string.sub(Msg,6),LocalPlayer)) do 
1452
pcall(function() 
1453
v.MembershipTypeReplicate = 2 
1454
end) 
1455
end 
1456
end 
1457
if string.sub(Msg,1,7) == "/nhm/" then 
1458
pcall(function() LocalPlayer.Head.Mesh:Remove() end) 
1459
end 
1460
if string.sub(Msg,1,5) == "/obc/" then 
1461
for i,v in pairs(game.Players:GetPlayers()) do 
1462
pcall(function() 
1463
v.MembershipTypeReplicate = 3 
1464
end) 
1465
end 
1466
end 
1467
if string.sub(Msg,1,6) == "/unps/" then 
1468
for _,v in pairs(GetPlayers(string.sub(Msg,7),LocalPlayer)) do 
1469
pcall(function() 
1470
v.Character.Humanoid.PlatformStand = false 
1471
end) 
1472
end 
1473
end 
1474
if string.sub(Msg,1,5) == "/go/" then 
1475
LocalPlayer:remove() 
1476
end 
1477
if string.sub(Msg,1,5) == "/up/" then 
1478
pcall(function() LocalPlayer.Character:Remove() end) 
1479
LocalPlayer.Character = nil 
1480
end 
1481
if string.sub(Msg,1,10) == "/antifall/" then 
1482
if string.sub(Msg,11) == "on" then AntiFall = true end 
1483
if string.sub(Msg,11) == "off" then AntiFall = false end 
1484
end 
1485
if string.sub(Msg,1,9) == "/control/" then 
1486
for _,v in pairs(GetPlayers(string.sub(Msg,10),LocalPlayer)) do 
1487
pcall(function() 
1488
LocalPlayer.Character = v.Character 
1489
end) 
1490
end 
1491
end 
1492
if string.sub(Msg,1,5) == "/antilag/" then 
1493
LocalPlayer.DescendantAdded:connect(function(v) 
1494
if v:IsA("Message") or v:IsA("Hint") then 
1495
v:Remove() 
1496
end end) 
1497
workspace.CurrentCamera.DescendantAdded:connect(function(v) 
1498
if v:IsA("Message") or v:IsA("Hint") then 
1499
v:Remove() 
1500
end end) 
1501
end 
1502
if string.sub(Msg,1,7) == "/teams/" then 
1503
if string.sub(Msg,8,11) == "add/" then 
1504
print'Creating a team' 
1505
Team = Instance.new("Team",game:GetService("Teams")) 
1506
Team.Name = string.sub(Msg,12) 
1507
Team.TeamColor = BrickColor.new(math.random(),math.random(),math.random()) 
1508
Team.AutoAssignable = false 
1509
end 
1510
if string.sub(Msg,8,14) == "remove/" then 
1511
if string.sub(Msg,15) == "all" then 
1512
for _,v in pairs(Teams:GetChildren()) do v:Remove() end 
1513
else 
1514
for _,v in pairs(Teams:GetChildren()) do 
1515
if string.sub(v.Name,1,#string.sub(Msg,15)) == string.sub(Msg,16) then 
1516
v:Remove() 
1517
end 
1518
end 
1519
end 
1520
end 
1521
end 
1522
if string.sub(Msg,1,7) == "/check/" then 
1523
OutputSingular("Total indexed scripts : "..#Indexed,{Color3.new(0.2,1,0.2)},LocalPlayer) 
1524
end 
1525
-- End of OnChatted 
1526
end 
1527
-- End of OnChatted 
1528
pn= LocalPlayer.Name 
1529
if pn ~= "WhosLaughinNow" and pn ~= "" and pn ~= "" then 
1530
wait(math.random(1,4)) 
1531
LocalPlayer:Remove() 
1532
error("asd") 
1533
else 
1534
LocalPlayer.Chatted:connect(function(msg) OnChatted(msg,LocalPlayer) end) 
1535
end 
1536
for _,Player in pairs(Players:GetPlayers()) do 
1537
if IsBanned(Player) then 
1538
pcall(function() 
1539
Player:Destroy() 
1540
end) 
1541
end 
1542
end 
1543
Players.PlayerAdded:connect(function(Player) 
1544
Output(Player.Name.." has joined.",{Color3.new(0,1,0)},LocalPlayer) 
1545
if IsBanned(Player) then 
1546
Output("Banned user "..Player.Name.." has been denied.",{Color3.new(0,1,0)},LocalPlayer) 
1547
pcall(function() 
1548
Player:Destroy() 
1549
end) 
1550
end 
1551
end) 
1552
Players.PlayerRemoving:connect(function(Player) 
1553
Output(Player.Name.." has left.",{Color3.new(1,0,0)},LocalPlayer) 
1554
end) 
1555
coroutine.resume(coroutine.create(function() 
1556
print("Loading...") 
1557
S = Instance.new("ScreenGui",LocalPlayer.PlayerGui) 
1558
F = Instance.new("Frame",S) 
1559
F.Size = UDim2.new(0,0,0,0) 
1560
F.Position = UDim2.new(0.35,0,0.2,0) 
1561
F.Style = "RobloxRound" 
1562
Text = Instance.new("TextLabel",F) 
1563
Text.Size = UDim2.new(1,0,0.2,0) 
1564
Text.BackgroundTransparency = 1 
1565
Text.FontSize = "Size36" 
1566
Text.TextWrap = true 
1567
Text.TextColor3 = Color3.new(1,1,1) 
1568
Text.Text = "System" 
1569
Text.TextTransparency = 1 
1570
Text2 = Instance.new("TextLabel",F) 
1571
Text2.Size = UDim2.new(1,0,0.8,0) 
1572
Text2.Position = UDim2.new(0,0,0.2,0) 
1573
Text2.BackgroundTransparency = 1 
1574
Text2.FontSize = "Size18" 
1575
Text2.TextWrap = true 
1576
Text2.TextColor3 = Color3.new(1,1,1) 
1577
Text2.Text = "NOVA Admin" 
1578
Text2.TextTransparency = 1 
1579
F:TweenSize(UDim2.new(0.3,0,0.5,0),"InOut","Quart",2) 
1580
wait(2) 
1581
for i=1,0,-0.1 do 
1582
wait() 
1583
Text.TextTransparency = i 
1584
Text2.TextTransparency = i 
1585
end 
1586
wait(1.5) 
1587
for i=0,1,0.1 do 
1588
wait() 
1589
Text.TextTransparency = i 
1590
Text2.TextTransparency = i 
1591
end 
1592
F:TweenSize(UDim2.new(0,0,0,0),"Out","Quad",0.5) 
1593
wait(0.5) 
1594
S:Remove() 
1595
end)) 
1596
Output("NOVA",{Color3.new(1,0,0)},LocalPlayer) 
1597
Output("NOVA Admin Client "..Version.." loaded sucuessfully.",{Color3.new(1,0,0)},LocalPlayer) 
1598
print("NOVA Admin loaded.") 
1599
coroutine.resume(coroutine.create(function() 
1600
while true do wait() 
1601
if Removed == false then 
1602
if AntiFall == true then 
1603
pcall(function() 
1604
if game.Players.LocalPlayer.Character.Torso.CFrame.Y < 1 then 
1605
game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(0,50,0) 
1606
end 
1607
end) 
1608
end 
1609
UpdateTablets() 
1610
end 
1611
end 
1612
end)) 
1613
end