Advertisement
c00lkiddv2016

NOVA Admin

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