Advertisement
rahuliscool

Untitled

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