Advertisement
SonicrixLP

Untitled

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