Advertisement
SmokeDelsin

roblox nova admin(place urname in 40 places)

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