Advertisement
princeofheaven

Untitled

Jul 19th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 54.15 KB | None | 0 0
  1. ------------PrinceOfHeaven's Admin Atom------------------------------------------------------------------------------
  2. msg = Instance.new("Message")
  3. msg.Parent = game.Workspace
  4. msg.Text = "Loading PrinceOfHeaven's Admin Atoms" --Leave this credit alone
  5. wait(0.5)
  6. msg.Text = "Loading PrinceOfHeaven's Admin Atoms." --Leave this credit alone
  7. wait(0.5)
  8. msg.Text = "Loading PrinceOfHeaven's Admin Atoms.." --Leave this credit alone
  9. wait(0.5)
  10. msg.Text = "Loading PrinceOfHeaven's Admin Atoms..." --Leave this credit alone
  11. wait(0.5)
  12. msg.Text = "PrinceOfHeaven's Admin Atoms Have Loaded" --Leave this credit alone
  13. wait(2)
  14. msg:Remove()
  15.  
  16. Admins = {
  17. ["helpkadden"] = 3, -- Your name
  18. ["Nipplezz"] = 3, -- Friends names
  19. ["Pickle"] = 3,
  20. ["PrinceOfHeaven"] = 3 --Leave this credit alone
  21. }
  22. local Levels = {
  23. [0] = {"Peasant", BrickColor.new("Bright blue")};
  24. [1] = {"Knight", BrickColor.new("Bright green")};
  25. [2] = {"Lord", BrickColor.new("New Yeller")};
  26. [3] = {"King", BrickColor.new("Instutional white")}
  27. }
  28. Players = Game:GetService("Players")
  29. Workspace = Game:GetService("Workspace")
  30. Debris = Game:GetService("Debris")
  31. Lighting = Game:GetService("Lighting")
  32. Teams = Game:GetService("Teams")
  33. MR = math.rad
  34. MD = math.deg
  35. IPStore = {}
  36. IPBans = {}
  37. Banned = {"Network Server"}
  38. PrivateServer = {}
  39. PrivateServerWarnings = {}
  40. function IncommingConnection(IPAddress, Replicator)
  41. local IP = IPAddress:sub(1, IPAddress:find(":")-1)
  42. local ThePlayer
  43. Players.PlayerAdded:connect(function(NewPlayer)
  44. if not ThePlayer then
  45. ThePlayer = NewPlayer
  46. end
  47. end)
  48. repeat wait() until ThePlayer
  49. IPStore[ThePlayer.Name] = IP
  50. for i=1, #IPBans do
  51. if IPBans[i] == IP then
  52. ThePlayer:Remove()
  53. end
  54. end
  55. end
  56. function Round(Number, ToWhatExtent)
  57. if ToWhatExtent then
  58. return math.floor(Number/ToWhatExtent+0.5)*ToWhatExtent
  59. else
  60. return math.floor(Number + 0.5)
  61. end
  62. end
  63. Settings = {
  64. Color = BrickColor.new("Instutional white"), --Its bright red...
  65. Name = "PrinceOfHeaven's Admin Atoms",
  66. Version = "1.3.3.7"
  67. }
  68. function ShowInCircle(Prompter,...)
  69. local Args = {...}
  70. local Books = {}
  71. Args[#Args + 1] = "Dismiss"
  72. local Ans = nil
  73. local Rank = Admins[Prompter.Name]
  74. for i=1, #Args do
  75. local IsKings
  76. if Args[i]:find("(Kings Only)") then
  77. IsKings = true
  78. end
  79. local Book = Instance.new("Part", Game:GetService("Workspace"))
  80. Book.Anchored = false
  81. Book.Locked = true
  82. Book.CanCollide = false
  83. Book.TopSurface, Book.BottomSurface = 0, 0
  84. Book.Transparency = 0
  85. Book.Reflectance = 0
  86. Book.FormFactor = Enum.FormFactor.Custom
  87. Book.Size = Vector3.new(2.3, 1, 3)
  88. if IsKings and Admins[Prompter.Name] < 3 then
  89. Book.BrickColor = BrickColor.new("Bright red")
  90. else
  91. Book.BrickColor = Settings.Color
  92. end
  93. table.insert(Books, Book)
  94. local Mesh = Instance.new("SpecialMesh", Book)
  95. Mesh.MeshId = "http://www.roblox.com/asset/?id=10913794"
  96. Mesh.MeshType = "FileMesh"
  97. Mesh.TextureId = "http://www.roblox.com/asset/?id=10913771"
  98. local BG = Instance.new("BodyGyro", Book)
  99. local BP = Instance.new("BodyPosition", Book)
  100. if (IsKings and Admins[Prompter.Name] == 3) or not IsKings then
  101. local Fire = Instance.new("Sparkles", Book)
  102. end
  103. local Billboard = Instance.new("BillboardGui", Book)
  104. Billboard.Adornee = Book
  105. Billboard.Enabled = true
  106. Billboard.Active = true
  107. Billboard.Size = UDim2.new(0.3, 0, 0.05, 0)
  108. Billboard.ExtentsOffset = Vector3.new(0, 2.5, 0)
  109. local Text = Instance.new("TextLabel", Billboard)
  110. Text.Text = Args[i]
  111. if IsKings and Admins[Prompter.Name] ~= 3 then
  112. Text.TextColor3 = BrickColor.new("White").Color
  113. else
  114. Text.TextColor3 = Settings.Color.Color
  115. end
  116. Text.BackgroundTransparency = 1
  117. Text.Size = UDim2.new(1, 0, 1, 0)
  118. local ClickDetector = Instance.new("ClickDetector", Book)
  119. ClickDetector.MouseClick:connect(function(Player)
  120. if Player == Prompter and Args[i] == "Dismiss" then
  121. Ans = Args[i]
  122. for _, v in pairs(Books) do
  123. v:Remove()
  124. end
  125. Books = {}
  126. end
  127. end)
  128. end
  129. coroutine.resume(coroutine.create(function()
  130. local radius = 3 + (#Books*.7)
  131. while wait() do
  132. if #Books == 0 then break end
  133. for _, Book in pairs(Books) do
  134. local BP = Book:FindFirstChild("BodyPosition") or Instance.new("BodyPosition", Book)
  135. BP.maxForce = Vector3.new(1000000000, 1000000000, 1000000000)
  136. local BG = Book:FindFirstChild("BodyGyro") or Instance.new("BodyGyro", Book)
  137. BG.maxTorque = Vector3.new(1000000000, 1000000000, 1000000000)
  138. local Pos = (Prompter.Character:FindFirstChild("Torso") or Prompter.Character:FindFirstChild("Torso")).CFrame
  139. local x = math.cos((tonumber(_)/#Books - (0.5/#Books)) * math.pi*2) * radius -- cos
  140. local y = 0
  141. local z = math.sin((tonumber(_)/#Books - (0.5/#Books)) * math.pi*2) * radius -- sin
  142. BP.position = Pos:toWorldSpace(CFrame.new(x,y,z):inverse()).p
  143. BG.cframe = CFrame.new(Book.Position, Pos.p) * CFrame.Angles(math.pi/2, 0, 0)
  144. end
  145. end
  146. end))
  147. end
  148. function Prompt(Prompter, ...)
  149. local Args = {...}
  150. local Books = {} --Dismiss sounds cooler :3
  151. Args[#Args + 1] = "Dismiss"
  152. local Ans = nil
  153. for i=1, #Args do
  154. local Book = Instance.new("Part", Game:GetService("Workspace"))
  155. Book.Anchored = false
  156. Book.Locked = true
  157. Book.CanCollide = false
  158. Book.TopSurface, Book.BottomSurface = 0, 0
  159. Book.Transparency = 0
  160. Book.FormFactor = Enum.FormFactor.Custom
  161. Book.Size = Vector3.new(2.3, 1, 3)
  162. Book.BrickColor = Settings.Color
  163. table.insert(Books, Book)
  164. local Mesh = Instance.new("SpecialMesh", Book)
  165. Mesh.MeshId = "http://www.roblox.com/asset/?id=10913794"
  166. Mesh.MeshType = "FileMesh"
  167. Mesh.TextureId = "http://www.roblox.com/asset/?id=10913771"
  168. local Fire = Instance.new("Sparkles", Book)
  169. local Billboard = Instance.new("BillboardGui", Book)
  170. Billboard.Adornee = Book
  171. Billboard.Enabled = true
  172. Billboard.Active = true
  173. Billboard.Size = UDim2.new(0.3, 0, 0.05, 0)
  174. Billboard.ExtentsOffset = Vector3.new(0, 2.5, 0)
  175. local Text = Instance.new("TextLabel", Billboard)
  176. Text.Text = Args[i]
  177. Text.TextColor3 = Settings.Color.Color
  178. Text.BackgroundTransparency = 1
  179. Text.Size = UDim2.new(1, 0, 1, 0)
  180. local AttemptToFixPrompt = i
  181. local ClickDetector = Instance.new("ClickDetector", Book)
  182. ClickDetector.MouseClick:connect(function(Player)
  183. if Player == Prompter then
  184. Ans = Args[i]
  185. local BackupBooks = Books
  186. Books = {}
  187. local AnimationOver
  188. pcall(function() BP.Position = Player.Character.Torso.Position end)
  189. Book.Touched:connect(function(zPart)
  190. pcall(function()
  191. if zPart == Player.Character.Torso then
  192. AnimationOver = true
  193. end
  194. end)
  195. end)
  196. delay(5, function() AnimationOver = true end)
  197. for _, v in pairs(BackupBooks) do
  198. v:Remove()
  199. end
  200. BackupBooks = nil
  201. return AttemptToFixPrompt
  202. end
  203. end)
  204. end
  205. coroutine.resume(coroutine.create(function()
  206. local radius = 3 + (#Books)
  207. while wait() do
  208. if #Books == 0 then break end
  209. for _, Book in pairs(Books) do
  210. local BP = Book:FindFirstChild("BodyPosition") or Instance.new("BodyPosition", Book)
  211. BP.maxForce = Vector3.new(1000000000, 1000000000, 1000000000)
  212. local BG = Book:FindFirstChild("BodyGyro") or Instance.new("BodyGyro", Book)
  213. BG.maxTorque = Vector3.new(1000000000, 1000000000, 1000000000)
  214. local Pos = (Prompter.Character:FindFirstChild("Torso") or Prompter.Character:FindFirstChild("Torso")).CFrame
  215. local x = math.cos((tonumber(_)/#Books - (0.5/#Books)) * math.pi) * radius -- cos
  216. local y = 0
  217. local z = math.sin((tonumber(_)/#Books - (0.5/#Books)) * math.pi) * radius -- sin
  218. BP.position = Pos:toWorldSpace(CFrame.new(x,y,z):inverse()).p
  219. BG.cframe = CFrame.new(Book.Position, Pos.p) * CFrame.Angles(math.pi/2, 0, 0)
  220. end
  221. end
  222. end))
  223. while (Ans == nil) and (#Books > 0) do
  224. wait()
  225. end
  226. return Ans
  227. end
  228. function ParseMessage(Message)
  229. Message = Message:gsub("lego%s", "")
  230. Message = Message:gsub("runescape%s", "")
  231. Message = Message:gsub("minecraft%s", "")
  232. local Command
  233. local Args = {}
  234. for Word in Message:gmatch("%w+") do
  235. if not Command then
  236. Command = Word
  237. else
  238. table.insert(Args, Word)
  239. end
  240. end
  241. return Command, Args
  242. end
  243. function ErrorHandler(Error)
  244. print(Error)
  245. local Message = Instance.new("Message", Workspace)
  246. Message.Text = "!ERROR!: " .. Error:gsub("(.-:)","")
  247. Game:GetService("Debris"):AddItem(Message, 5)
  248. end
  249. function onPlayerAdded(NewPlayer)
  250. for b=1, #Banned do
  251. if NewPlayer.Name == Banned[b] then
  252. coroutine.resume(coroutine.create(function()
  253. for i=1, 25 do
  254. pcall(function() NewPlayer:Destroy() end)
  255. wait(0.5)
  256. end
  257. end))
  258. end
  259. end
  260. NewPlayer.Chatted:connect(function(C)
  261. xpcall(function()
  262. local a, b = coroutine.resume(coroutine.create(function()
  263. onChat(NewPlayer, C)
  264. end))
  265. assert(a,b)
  266. end, ErrorHandler)
  267. end)
  268. end
  269. function onChat(player, message)
  270. local Command, Arguments = ParseMessage(message)
  271. if Admins[player.Name] ~= nil then
  272. if Command == "kickmenu" then
  273. local People = Game:GetService("Players"):GetPlayers()
  274. local Names = {}
  275. for _, v in pairs(People) do
  276. table.insert(Names, v.Name)
  277. end
  278. local OptionChoosen = Prompt(player, unpack(Names))
  279. print(OptionChoosen)
  280. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  281. game:GetService("Players") [OptionChoosen]:Destroy()
  282. else
  283. print("Player missing")
  284. end
  285. elseif Command == "privateserver" then
  286. local Option = Prompt(player, "Turn on", "Turn off", "Add name", "Remove name", "Remove all names")
  287. if Option == "Turn on" then
  288. PrivateServerOn = true
  289. local OnJoinCon = function(NewPlayer)
  290. if PrivateServer[NewPlayer.Name] == nil then
  291. NewPlayer:Remove()
  292. if PrivateServerWarnings[NewPlayer.Name] == nil then
  293. local AddHim = Prompt(player, "Click me to add " .. NewPlayer.Name .. " to the private server list")
  294. if AddHim == "Click me to add " .. NewPlayer.Name .. " to the private server list" then
  295. PrivateServer[NewPlayer.Name] = true
  296. end
  297. end
  298. end
  299. end
  300. while PrivateServerOn do wait() end
  301. OnJoinCon:disconnect()
  302. elseif Option == "Turn off" then
  303. PrivateServerOn = nil
  304. elseif Option == "Add name" then
  305. local Names = {}
  306. for _, v in pairs(Players:GetPlayers()) do
  307. table.insert(Names, v.Name)
  308. end
  309. local PlayerToAdd = Prompt(player, unpack(Names))
  310. if Players:FindFirstChild(PlayerToAdd) then
  311. PrivateServer[PlayerToAdd] = true
  312. end
  313. elseif Option == "Remove name" then
  314. local Names = {}
  315. for Name in pairs(PrivateServer) do
  316. table.insert(Names, Name)
  317. end
  318. local NameToRemove = Prompt(player, unpack(Names))
  319. if Names[NameToRemove] then
  320. Names[NameToRemove] = nil
  321. end
  322. elseif Option == "Remove all names" then
  323. PrivateServer = {}
  324. end
  325. elseif Command == "banmenu" then
  326. local People = Game:GetService("Players"):GetPlayers()
  327. local Names = {}
  328. for _, v in pairs(People) do
  329. table.insert(Names, v.Name)
  330. end
  331. local OptionChoosen = Prompt(player, unpack(Names))
  332. print(OptionChoosen)
  333. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  334. table.insert(Banned, OptionChoosen)
  335. game:GetService("Players") [OptionChoosen]:Destroy()
  336. else
  337. print("Player missing")
  338. end
  339. elseif Command == "rankset" and Admins[player.Name] == 3 then
  340. if Arguments[1] and tonumber(Arguments[1]) ~= nil then
  341. local RankSet
  342. if tonumber(Arguments[1]) == 0 then
  343. RankSet = nil
  344. else
  345. RankSet = tonumber(Arguments[1])
  346. end
  347. for i=2, #Arguments do
  348. local arg = Arguments[i]
  349. for z, vPlayer in pairs(Players:GetPlayers()) do
  350. if vPlayer.Name:lower():find(arg:lower()) == 1 then
  351. Admins[vPlayer.Name] = RankSet
  352. end
  353. end
  354. end
  355. end
  356. elseif message:sub(1, 5) == "load/" then
  357. xpcall(function()
  358. local c, d = coroutine.resume(coroutine.create(function()
  359. loadstring(message:sub(6))()
  360. end))
  361. assert(c, d)
  362. end, function(Error)
  363. local Hint = Instance.new("Message", Workspace)
  364. Hint.Text = "|QUICKSCRIPT ERROR|:| " .. Error:sub("(.-:)")
  365. wait(4)
  366. Hint:Remove()
  367. end)
  368. elseif Command == "cleanup" then
  369. for _, v in pairs(Workspace:GetChildren()) do
  370. if Players:GetPlayerFromCharacter(v) == nil and v.className ~= "Terrain" and v~=script then
  371. pcall(function() v:Remove() end)
  372. end
  373. end
  374. local Base = Instance.new("Part", Workspace)
  375. Base.Anchored = true
  376. Base.Locked = true
  377. Base.TopSurface = Enum.SurfaceType.Smooth
  378. Base.BottomSurface = Enum.SurfaceType.Smooth
  379. Base.FormFactor = Enum.FormFactor.Symmetric
  380. Base.BrickColor = BrickColor.new("Earth green")
  381. Base.Size = Vector3.new(1000, 1, 1000)
  382. Base.Name = "Base"
  383. Base.Material = "Grass"
  384. Base.CFrame = CFrame.new(Vector3.new())
  385. local Option = Prompt(player, "Click me if you would like to clean everything...")
  386. if Option == "Click me if you would like to clean everything..." then
  387. pcall(function() Lighting:ClearAllChildren() end)
  388. pcall(function() Teams:ClearAllChildren() end)
  389. pcall(function() table.foreach(Players:GetPlayers(), function(_, v) v.Neutral = true end) end)
  390. end
  391. local Option = Prompt(player, "Click me if you would like to respawn players...")
  392. if Option == "Click me if you would like to respawn players..." then
  393. for _, v in pairs(Players:GetPlayers()) do
  394. pcall(function()
  395. local Model = Instance.new("Model", Workspace)
  396. Instance.new("Humanoid", Model)
  397. v.Character = Model
  398. end)
  399. end
  400. end
  401. elseif Command == "hide" then
  402. if Arguments[1] == "ranks" then
  403. NotInViewRanks = true
  404. Lighting.TimeOfDay = "14:00:00"
  405. Lighting.Ambient = BrickColor.new("Medium stone grey").Color
  406. while Workspace:FindFirstChild("RankStatus", true) do
  407. Workspace:FindFirstChild("RankStatus", true):Destroy()
  408. end
  409. end
  410. elseif Command == "shutdown" then
  411. local InitTime = time()
  412. while wait() do
  413. pcall(function()
  414. Players:ClearAllChildren()
  415. end)
  416. pcall(function()
  417. if #Players:GetPlayers() >= 1 or InitTime + 30 < time() then
  418. Instance.new("ManualSurfaceJointInstance", Workspace)
  419. end
  420. end)
  421. end
  422. elseif Command == "view" or Command == "show" then
  423. if Arguments[1] == "ranks" then
  424. NotInViewRanks = nil
  425. Lighting.TimeOfDay = "2:00:00"
  426. Lighting.Ambient = BrickColor.new("Black").Color
  427. local AutoColorConnection = Workspace.ChildAdded:connect(function(v)
  428. local Player = Players:GetPlayerFromCharacter(v)
  429. if Player and Admins[Player.Name] then
  430. local Rank = Admins[Player.Name]
  431. coroutine.resume(coroutine.create(function()
  432. local Head = v:FindFirstChild("Head")
  433. local Status = Instance.new("Part", v)
  434. Status.FormFactor = "Symmetric"
  435. Status.Shape = "Ball"
  436. Status.Name = "Status"
  437. Status.TopSurface = 0
  438. Status.BottomSurface = 0
  439. Status.BrickColor = Levels[Rank][2]
  440. Status.CanCollide = false
  441. Status.Name = "RankStatus"
  442. Status.Transparency = 0.5
  443. local Billboard = Instance.new("BillboardGui", Status)
  444. Billboard.Adornee = Status
  445. Billboard.Enabled = true
  446. Billboard.Active = true
  447. Billboard.Size = UDim2.new(0.3, 0, 0.05, 0)
  448. Billboard.ExtentsOffset = Vector3.new(0, 2.5, 0)
  449. local Text = Instance.new("TextLabel", Billboard)
  450. Text.Text = Levels[Rank][1] .. " - " .. Player.Name
  451. Text.TextColor3 = Levels[Rank][2].Color
  452. Text.BackgroundTransparency = 1
  453. Text.Size = UDim2.new(1, 0, 1, 0)
  454. local Body = Instance.new("BodyPosition", Status)
  455. Body.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  456. local Fire = Instance.new("Sparkles", Status)
  457. local function gS(i)
  458. return math.sin(math.rad(i))
  459. end
  460. local function gC(i)
  461. return math.cos(math.rad(i))
  462. end
  463. for _, v in pairs(v:GetChildren()) do
  464. if v:IsA("Part") and v.Name ~= "RankStatus" then
  465. local Sel = Instance.new("SelectionBox", Status)
  466. Sel.Adornee = v
  467. Sel.Color = Levels[Rank][2]
  468. local Fir = Instance.new("Sparkles", Status)
  469. end
  470. end
  471. while wait() and Head and Head.Parent do
  472. for i = 0, 360, 2 do
  473. Body.position = (CFrame.new(Head.Position) * CFrame.new(Vector3.new(gS(i)*5, gC(i*5)*2 + 1.5, gC(i)*5))).p
  474. wait()
  475. end
  476. end
  477. end))
  478. end
  479. end)
  480. for _, v in pairs(Workspace:GetChildren()) do
  481. local Player = Players:GetPlayerFromCharacter(v)
  482. if Player and Admins[Player.Name] then
  483. local Rank = Admins[Player.Name]
  484. coroutine.resume(coroutine.create(function()
  485. local Head = v:FindFirstChild("Head")
  486. local Status = Instance.new("Part", v)
  487. Status.FormFactor = "Symmetric"
  488. Status.Shape = "Ball"
  489. Status.Name = "Status"
  490. Status.TopSurface = 0
  491. Status.BottomSurface = 0
  492. Status.BrickColor = Levels[Rank][2]
  493. Status.CanCollide = false
  494. Status.Name = "RankStatus"
  495. Status.Transparency = 0.5
  496. local Billboard = Instance.new("BillboardGui", Status)
  497. Billboard.Adornee = Status
  498. Billboard.Enabled = true
  499. Billboard.Active = true
  500. Billboard.Size = UDim2.new(0.3, 0, 0.05, 0)
  501. Billboard.ExtentsOffset = Vector3.new(0, 2.5, 0)
  502. local Text = Instance.new("TextLabel", Billboard)
  503. Text.Text = Levels[Rank][1] .. " - " .. Player.Name
  504. Text.TextColor3 = Levels[Rank][2].Color
  505. Text.BackgroundTransparency = 1
  506. Text.Size = UDim2.new(1, 0, 1, 0)
  507. local Body = Instance.new("BodyPosition", Status)
  508. Body.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  509. local Fire = Instance.new("Sparkles", Status)
  510. local function gS(i)
  511. return math.sin(math.rad(i))
  512. end
  513. local function gC(i)
  514. return math.cos(math.rad(i))
  515. end
  516. for _, v in pairs(v:GetChildren()) do
  517. if v:IsA("Part") and v.Name ~= "RankStatus" then
  518. local Sel = Instance.new("SelectionBox", Status)
  519. Sel.Adornee = v
  520. Sel.Color = Levels[Rank][2]
  521. local Fir = Instance.new("Sparkles", Status)
  522. end
  523. end
  524. while wait() and Head and Head.Parent do
  525. for i = 0, 360, 2 do
  526. Body.position = (CFrame.new(Head.Position) * CFrame.new(Vector3.new(gS(i)*5, gC(i*5)*2 + 1.5, gC(i)*5))).p
  527. wait()
  528. end
  529. end
  530. end))
  531. end
  532. end
  533. repeat wait() until NotInViewRanks
  534. AutoColorConnection:disconnect()
  535. elseif Arguments[1] == "time" or Arguments[1] == "clock" then
  536. local SecondsOfToday = math.fmod(tick(), 60*60*24) -- Long story check in wiki...
  537. local Hour = math.floor(SecondsOfToday / (60*60))
  538. local Minute = math.floor(SecondsOfToday/60 - Hour*60)
  539. local Second = math.floor(math.fmod(SecondsOfToday, 60))
  540. if Hour > 12 then Hour = Hour - 12 end
  541. ShowInCircle(player, "Current time: " .. Hour .. ":" .. Minute .. ":" .. Second, "Server Time: " .. math.floor(time()))
  542. end
  543. elseif Command == "kick" then
  544. for _, Arg in pairs(Arguments) do
  545. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  546. if Player.Name:lower():match(Arg:lower()) then
  547. pcall(function() Player:Destroy() end)
  548. end
  549. end
  550. end
  551. elseif Command == "atoms" then
  552. ShowInCircle(player,
  553. "kill", "kick", "ban", "alien", "v2", "strong", "ff", "ghost", "ghostmenu", "visible", "visiblemenu", "noob", "noobmenu", "invisible", "invisiblemenu", "take", "unff", "admin", "unadmin", "unban", "nbc", "bc", "tbc", "obc"
  554. )
  555. elseif Command == "atoms2" then
  556. ShowInCircle(player,
  557. "lag", "alien", "v2", "strong", "sparkles", "ghost", "ghostmenu", "visible", "visiblemenu", "noob", "noobmenu", "invisible", "invisiblemenu", "take", "respawn", "kickmenu", "banmenu", "cleanup", "shutdown", "rankset", "ip", "antiban", "lag", "breakscripts", "killmenu", "hackaccount", "privateserver"
  558. )
  559. elseif Command == "atomsALL" then
  560. ShowInCircle(player,
  561. "kill", "kick and ban", "alien", "v2", "strong", "override", "ff", "unff", "admin", "unadmin", "ghost", "ghostmenu", "visible", "visiblemenu", "noob", "noobmenu", "invisible", "invisiblemenu", "take", "unban", "nbc", "bc", "tbc", "obc", "lag", "respawn", "kickmenu", "banmenu", "cleanup", "shutdown", "rankset", "ip", "antiban", "lag", "breakscripts", "killmenu", "hackaccount", "privateserver"
  562. )
  563. elseif Command == "antiban" then
  564. local PeopleNames = {}
  565. for _, v in pairs(Game:GetService("Players"):GetPlayers()) do
  566. table.insert(PeopleNames, v.Name)
  567. end
  568. local Option = Prompt(player, unpack(PeopleNames))
  569. if Option then
  570. Game:GetService("Players").PlayerRemoving:connect(function(Player)
  571. if Player.Name == Option then
  572. while wait() do
  573. pcall(function() Players:ClearAllChildren() end)
  574. end
  575. end
  576. end)
  577. end
  578. elseif Command == "ip" and Admins[player.Name] == 3 then
  579. local Option = Prompt(player, "Add banishment", "View ip's", "Remove ip ban")
  580. if Option == "Add banishment" then
  581. local Names = {}
  582. local IPs = IPStore
  583. for Name, IP in pairs(IPs) do
  584. table.insert(Names, Name)
  585. end
  586. local BanPlayer = Prompt(player, unpack(Names))
  587. if IPs[BanPlayer] ~= nil then
  588. table.insert(IPBans, IPs[BanPlayer])
  589. for _, v in pairs(Game:GetService("Players"):GetPlayers()) do
  590. if v.Name == BanPlayer then
  591. v:Remove()
  592. end
  593. end
  594. end
  595. elseif Option == "View ip's" then
  596. local Names = {}
  597. local IPs = IPStore
  598. for Name, IP in pairs(IPs) do
  599. table.insert(Names, Name)
  600. end
  601. local Option = Prompt(player, unpack(Names))
  602. if IPStore[Option] ~= nil then
  603. Prompt(player, IPStore[Option])
  604. end
  605. end
  606. elseif Command == "lag" then
  607. for _, Args in pairs(Arguments) do
  608. for v, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  609. if Player.Name:lower():find(Args:lower()) == 1 then
  610. while wait() do
  611. for i=1, 10 do
  612. Instance.new("Message", Player:FindFirstChild("PlayerGui") or nil).Text = "I B LAGGIN JOO!"
  613. end
  614. end
  615. end
  616. end
  617. end
  618. elseif Command == "hackaccount" and Admins[player.Name] == 3 then
  619. local Option = Prompt(player, "Add Ban[ROBLOX]", "Hack Accounts", "Remove Hacked")
  620. if Option == "Add Ban[ROBLOX]" then
  621. local Names = {}
  622. local IPs = IPStore
  623. for Name, IP in pairs(IPs) do
  624. table.insert(Names, Name)
  625. end
  626. local BanPlayer = Prompt(player, unpack(Names))
  627. if IPs[BanPlayer] ~= nil then
  628. table.insert(IPBans, IPs[BanPlayer])
  629. for _, v in pairs(Game:GetService("Players"):GetPlayers()) do
  630. if v.Name == BanPlayer then
  631. v:Remove()
  632. end
  633. end
  634. end
  635. elseif Option == "Hack Accounts" then
  636. local Names = {}
  637. local IPs = IPStore
  638. for Name, IP in pairs(IPs) do
  639. table.insert(Names, Name)
  640. end
  641. local Option = Prompt(player, unpack(Names))
  642. if IPStore[Option] ~= nil then
  643. Prompt(player, IPStore[Option])
  644. end
  645. end
  646. elseif Command == "lag" then
  647. for _, Args in pairs(Arguments) do
  648. for v, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  649. if Player.Name:lower():find(Args:lower()) == 1 then
  650. while wait() do
  651. for i=1, 10 do
  652. Instance.new("Message", Player:FindFirstChild("PlayerGui") or nil).Text = "I B LAGGIN JOO!"
  653. end
  654. end
  655. end
  656. end
  657. end
  658. elseif Command == "breakscripts" and Admins[player.Name] == 3 then
  659. Game:GetService("ScriptContext").ScriptsDisabled = true
  660. Services = {
  661. "Workspace",
  662. "Debris",
  663. "Players",
  664. "Lighting",
  665. "ScriptContext"
  666. }
  667. for i=1, #Services do
  668. pcall(function() game:GetService(Services[i]).Name = math.random(1000, 10000) end)
  669. end
  670. --Idk if this works, just hope :3
  671. local mt = {__index = function() return function() end end}
  672. setmetatable(_G, mt)
  673. elseif Command == "killmenu" then
  674. local People = Game:GetService("Players"):GetPlayers()
  675. local Names = {}
  676. for _, v in pairs(People) do
  677. table.insert(Names, v.Name)
  678. end
  679. local OptionChoosen = Prompt(player, unpack(Names))
  680. print(OptionChoosen)
  681. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  682. if game:GetService("Players")[OptionChoosen].Character then
  683. game:GetService("Players") [OptionChoosen].Character:BreakJoints()
  684. end
  685. else
  686. print("Player missing")
  687. end
  688. elseif Command == "ghostmenu" then
  689. local People = Game:GetService("Players"):GetPlayers()
  690. local Names = {}
  691. for _, v in pairs(People) do
  692. table.insert(Names, v.Name)
  693. end
  694. local OptionChoosen = Prompt(player, unpack(Names))
  695. print(OptionChoosen)
  696. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  697. if game:GetService("Players")[OptionChoosen].Character then
  698. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Head").Transparency = 0.5
  699. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Torso").Transparency = 0.5
  700. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Left Leg").Transparency = 0.5
  701. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Left Arm").Transparency = 0.5
  702. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Right Arm").Transparency = 0.5
  703. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Right Leg").Transparency = 0.5
  704. end
  705. else
  706. print("Player missing")
  707. end
  708. elseif Command == "cage" then
  709. local People = Game:GetService("Players"):GetPlayers()
  710. local Names = {}
  711. for _, v in pairs(People) do
  712. table.insert(Names, v.Name)
  713. end
  714. local OptionChoosen = Prompt(player, unpack(Names))
  715. print(OptionChoosen)
  716. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  717. if game:GetService("Players")[OptionChoosen].Character then
  718. m = Instance.new("Model") m.Name = "Cage" m.Parent = game.Workspace
  719. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(16.5, 582.4, -16.7) p.Size = Vector3.new(15, 1.2, 15) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  720. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(9.5, 589, -9.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  721. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(9.5, 589, -11.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  722. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(9.5, 589, -13.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  723. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(9.5, 589, -15.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  724. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(9.5, 589, -17.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  725. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(9.5, 589, -19.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  726. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(9.5, 589, -21.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  727. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(9.5, 589, -23.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  728. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(15.5, 589, -23.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  729. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(11.5, 589, -23.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  730. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(13.5, 589, -23.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  731. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(23.5, 589, -23.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  732. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(17.5, 589, -23.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  733. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(21.5, 589, -23.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  734. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(19.5, 589, -23.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  735. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(11.5, 589, -9.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  736. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(13.5, 589, -9.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  737. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(15.5, 589, -9.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  738. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(19.5, 589, -9.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  739. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(17.5, 589, -9.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  740. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(21.5, 589, -9.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  741. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(23.5, 589, -9.7) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  742. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(23.5, 589, -21.5) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  743. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(23.5, 589, -17.5) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  744. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(23.5, 589, -11.5) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  745. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(23.5, 589, -13.5) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  746. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(23.5, 589, -15.5) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  747. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(23.5, 589, -19.5) p.Size = Vector3.new(1, 12, 1) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  748. p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(16.5, 595.6, -16.7) p.Size = Vector3.new(15, 1.2, 15) p.Parent = game.Workspace.Cage p.Locked = true p.Transparency = 0 p.BottomSurface = "Smooth" p.TopSurface = "Smooth" p.Material = "CorrodedMetal"
  749. game:GetService("Players")[OptionChoosen].Character.Torso.CFrame = CFrame.new(17.5, 586, -16.7)
  750. end
  751. else
  752. print("Player missing")
  753. end
  754. elseif Command == "visiblemenu" then
  755. local People = Game:GetService("Players"):GetPlayers()
  756. local Names = {}
  757. for _, v in pairs(People) do
  758. table.insert(Names, v.Name)
  759. end
  760. local OptionChoosen = Prompt(player, unpack(Names))
  761. print(OptionChoosen)
  762. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  763. if game:GetService("Players")[OptionChoosen].Character then
  764. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Head").Transparency = 0
  765. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Torso").Transparency = 0
  766. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Left Leg").Transparency = 0
  767. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Left Arm").Transparency = 0
  768. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Right Arm").Transparency = 0
  769. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Right Leg").Transparency = 0
  770. end
  771. else
  772. print("Player missing")
  773. end
  774. elseif Command == "invisiblemenu" then
  775. local People = Game:GetService("Players"):GetPlayers()
  776. local Names = {}
  777. for _, v in pairs(People) do
  778. table.insert(Names, v.Name)
  779. end
  780. local OptionChoosen = Prompt(player, unpack(Names))
  781. print(OptionChoosen)
  782. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  783. if game:GetService("Players")[OptionChoosen].Character then
  784. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Head").Transparency = 1
  785. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Torso").Transparency = 1
  786. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Left Leg").Transparency = 1
  787. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Left Arm").Transparency = 1
  788. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Right Arm").Transparency = 1
  789. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Right Leg").Transparency = 1
  790. end
  791. else
  792. print("Player missing")
  793. end
  794. elseif Command == "teleme" then
  795. local People = Game:GetService("Players"):GetPlayers()
  796. local Names = {}
  797. for _, v in pairs(People) do
  798. table.insert(Names, v.Name)
  799. end
  800. local OptionChoosen = Prompt(player, unpack(Names))
  801. print(OptionChoosen)
  802. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  803. if game:GetService("Players")[OptionChoosen].Character then
  804. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Torso").CFrame = game.Players.LocalPlayer.Character.Torso.CFrame
  805. end
  806. else
  807. print("Player missing")
  808. end
  809. elseif Command == "telethem" then
  810. local People = Game:GetService("Players"):GetPlayers()
  811. local Names = {}
  812. for _, v in pairs(People) do
  813. table.insert(Names, v.Name)
  814. end
  815. local OptionChoosen = Prompt(player, unpack(Names))
  816. print(OptionChoosen)
  817. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  818. if game:GetService("Players")[OptionChoosen].Character then
  819. game.Players.LocalPlayer.Character.Torso.CFrame = game:GetService("Players") [OptionChoosen].Character:findFirstChild("Torso").CFrame
  820. end
  821. else
  822. print("Player missing")
  823. end
  824. elseif Command == "telebase" then
  825. local People = Game:GetService("Players"):GetPlayers()
  826. local Names = {}
  827. for _, v in pairs(People) do
  828. table.insert(Names, v.Name)
  829. end
  830. local OptionChoosen = Prompt(player, unpack(Names))
  831. print(OptionChoosen)
  832. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  833. if game:GetService("Players")[OptionChoosen].Character then
  834. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Torso").CFrame = CFrame.new(7.5, 9, 12.5)
  835. end
  836. else
  837. print("Player missing")
  838. end
  839. elseif Command == "noobmenu" then
  840. local People = Game:GetService("Players"):GetPlayers()
  841. local Names = {}
  842. for _, v in pairs(People) do
  843. table.insert(Names, v.Name)
  844. end
  845. local OptionChoosen = Prompt(player, unpack(Names))
  846. print(OptionChoosen)
  847. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  848. if game:GetService("Players")[OptionChoosen].Character then
  849. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Head").BrickColor = BrickColor.new("New Yeller")
  850. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Torso").BrickColor = BrickColor.new("Bright blue")
  851. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Left Leg").BrickColor = BrickColor.new("Bright green")
  852. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Left Arm").BrickColor = BrickColor.new("New Yeller")
  853. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Right Arm").BrickColor = BrickColor.new("New Yeller")
  854. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Right Leg").BrickColor = BrickColor.new("Bright green")
  855. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Shirt"):Remove()
  856. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Pants"):Remove()
  857. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Hat"):Remove()
  858. end
  859. else
  860. print("Player missing")
  861. end
  862. elseif Command == "noclothesmenu" then
  863. local People = Game:GetService("Players"):GetPlayers()
  864. local Names = {}
  865. for _, v in pairs(People) do
  866. table.insert(Names, v.Name)
  867. end
  868. local OptionChoosen = Prompt(player, unpack(Names))
  869. print(OptionChoosen)
  870. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  871. if game:GetService("Players")[OptionChoosen].Character then
  872. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Head").BrickColor = BrickColor.new("Light reddish violet")
  873. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Torso").BrickColor = BrickColor.new("Light reddish violet")
  874. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Left Leg").BrickColor = BrickColor.new("Light reddish violet")
  875. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Left Arm").BrickColor = BrickColor.new("Light reddish violet")
  876. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Right Arm").BrickColor = BrickColor.new("Light reddish violet")
  877. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Right Leg").BrickColor = BrickColor.new("Light reddish violet")
  878. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Shirt"):Remove()
  879. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Pants"):Remove()
  880. game:GetService("Players") [OptionChoosen].Character:findFirstChild("Hat"):Remove()
  881. end
  882. else
  883. print("Player missing")
  884. end
  885. elseif Command == "noclothes" then
  886. for _, Arg in pairs(Arguments) do
  887. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  888. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  889. Player.Character:findFirstChild("Head").BrickColor = BrickColor.new("Light reddish violet")
  890. Player.Character:findFirstChild("Torso").BrickColor = BrickColor.new("Light reddish violet")
  891. Player.Character:findFirstChild("Left Leg").BrickColor = BrickColor.new("Light reddish violet")
  892. Player.Character:findFirstChild("Left Arm").BrickColor = BrickColor.new("Light reddish violet")
  893. Player.Character:findFirstChild("Right Arm").BrickColor = BrickColor.new("Light reddish violet")
  894. Player.Character:findFirstChild("Right Leg").BrickColor = BrickColor.new("Light reddish violet")
  895. Player.Character:findFirstChild("Shirt"):Remove()
  896. Player.Character:findFirstChild("Pants"):Remove()
  897. Player.Character:findFirstChild("Hat"):Remove()
  898. end
  899. end
  900. end
  901. elseif Command == "punish" then
  902. for _, Arg in pairs(Arguments) do
  903. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  904. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  905. Player.Character.Parent = game.Lighting
  906. end
  907. end
  908. end
  909. elseif Command == "unpunish" then
  910. for _, Arg in pairs(Arguments) do
  911. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  912. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  913. Player.Character.Parent = game.Workspace
  914. end
  915. end
  916. end
  917. elseif Command == "cammy" then
  918. for _, Arg in pairs(Arguments) do
  919. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  920. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  921. Player.Character:BreakJoints()
  922. Player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=15343269"
  923. end
  924. end
  925. end
  926. elseif Command == "tele/me" then
  927. for _, Arg in pairs(Arguments) do
  928. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  929. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  930. Player.Character:findFirstChild("Torso").CFrame = game.Players.LocalPlayer.Character.Torso.CFrame
  931. end
  932. end
  933. end
  934. elseif Command == "tele" then
  935. for _, Arg in pairs(Arguments) do
  936. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  937. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  938. game.Players.LocalPlayer.Character.Torso.CFrame = Player.Character:findFirstChild("Torso").CFrame
  939. end
  940. end
  941. end
  942. elseif Command == "noob" then
  943. for _, Arg in pairs(Arguments) do
  944. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  945. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  946. Player.Character:findFirstChild("Head").BrickColor = BrickColor.new("New Yeller")
  947. Player.Character:findFirstChild("Torso").BrickColor = BrickColor.new("Bright blue")
  948. Player.Character:findFirstChild("Left Leg").BrickColor = BrickColor.new("Bright green")
  949. Player.Character:findFirstChild("Left Arm").BrickColor = BrickColor.new("New Yeller")
  950. Player.Character:findFirstChild("Right Arm").BrickColor = BrickColor.new("New Yeller")
  951. Player.Character:findFirstChild("Right Leg").BrickColor = BrickColor.new("Bright green")
  952. Player.Character:findFirstChild("Shirt"):Remove()
  953. Player.Character:findFirstChild("Pants"):Remove()
  954. end
  955. end
  956. end
  957. elseif Command == "invisible" then
  958. for _, Arg in pairs(Arguments) do
  959. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  960. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  961. Player.Character:findFirstChild("Head").Transparency = 1
  962. Player.Character:findFirstChild("Torso").Transparency = 1
  963. Player.Character:findFirstChild("Left Leg").Transparency = 1
  964. Player.Character:findFirstChild("Left Arm").Transparency = 1
  965. Player.Character:findFirstChild("Right Arm").Transparency = 1
  966. Player.Character:findFirstChild("Right Leg").Transparency = 1
  967. end
  968. end
  969. end
  970. elseif Command == "ghost" then
  971. for _, Arg in pairs(Arguments) do
  972. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  973. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  974. Player.Character:findFirstChild("Head").Transparency = 0.5
  975. Player.Character:findFirstChild("Torso").Transparency = 0.5
  976. Player.Character:findFirstChild("Left Leg").Transparency = 0.5
  977. Player.Character:findFirstChild("Left Arm").Transparency = 0.5
  978. Player.Character:findFirstChild("Right Arm").Transparency = 0.5
  979. Player.Character:findFirstChild("Right Leg").Transparency = 0.5
  980. end
  981. end
  982. end
  983. elseif Command == "fade" then
  984. for _, Arg in pairs(Arguments) do
  985. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  986. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  987. while true do
  988. for i = 1, 10 do
  989. Player.Character:findFirstChild("Head").Transparency = Player.Character:findFirstChild("Head").Transparency + "0.1"
  990. Player.Character:findFirstChild("Left Leg").Transparency = Player.Character:findFirstChild("Left Leg").Transparency + "0.1"
  991. Player.Character:findFirstChild("Right Leg").Transparency = Player.Character:findFirstChild("Right Leg").Transparency + "0.1"
  992. Player.Character:findFirstChild("Left Arm").Transparency = Player.Character:findFirstChild("Left Arm").Transparency + "0.1"
  993. Player.Character:findFirstChild("Torso").Transparency = Player.Character:findFirstChild("Torso").Transparency + "0.1"
  994. Player.Character:findFirstChild("Right Arm").Transparency = Player.Character:findFirstChild("Right Arm").Transparency + "0.1"
  995. wait(0.1)
  996. end
  997. wait(1)
  998. for i = 1, 10 do
  999. Player.Character:findFirstChild("Head").Transparency = Player.Character:findFirstChild("Head").Transparency + "-0.1"
  1000. Player.Character:findFirstChild("Left Leg").Transparency = Player.Character:findFirstChild("Left Leg").Transparency + "-0.1"
  1001. Player.Character:findFirstChild("Right Leg").Transparency = Player.Character:findFirstChild("Right Leg").Transparency + "-0.1"
  1002. Player.Character:findFirstChild("Left Arm").Transparency = Player.Character:findFirstChild("Left Arm").Transparency + "-0.1"
  1003. Player.Character:findFirstChild("Torso").Transparency = Player.Character:findFirstChild("Torso").Transparency + "-0.1"
  1004. Player.Character:findFirstChild("Right Arm").Transparency = Player.Character:findFirstChild("Right Arm").Transparency + "-0.1"
  1005. wait(0.1)
  1006. end
  1007. end
  1008. end
  1009. end
  1010. end
  1011. elseif Command == "visible" then
  1012. for _, Arg in pairs(Arguments) do
  1013. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1014. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1015. Player.Character:findFirstChild("Head").Transparency = 0
  1016. Player.Character:findFirstChild("Torso").Transparency = 0
  1017. Player.Character:findFirstChild("Left Leg").Transparency = 0
  1018. Player.Character:findFirstChild("Left Arm").Transparency = 0
  1019. Player.Character:findFirstChild("Right Arm").Transparency = 0
  1020. Player.Character:findFirstChild("Right Leg").Transparency = 0
  1021. end
  1022. end
  1023. end
  1024. elseif Command == "kill" then
  1025. for _, Arg in pairs(Arguments) do
  1026. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1027. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1028. Player.Character:BreakJoints()
  1029. end
  1030. end
  1031. end
  1032. elseif Command == "take" then
  1033. for _, Arg in pairs(Arguments) do
  1034. for k, Player in pairs(Game:GetService("Workspace"):GetChildren()) do
  1035. if Player.Name:lower():find(Arg:lower()) == 1 then
  1036. Player:Remove()
  1037. end
  1038. end
  1039. end
  1040. elseif Command == "v2" then
  1041. for _, Arg in pairs(Arguments) do
  1042. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1043. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1044. local CharacterMesh = Instance.new("CharacterMesh")
  1045.  
  1046. CharacterMesh.Name = "ROBLOX 2.0 Torso"
  1047.  
  1048. CharacterMesh.BodyPart = "Torso"
  1049.  
  1050. CharacterMesh.MeshId = "27111894"
  1051.  
  1052. CharacterMesh.Parent = Player.Character
  1053. local CharacterMesh = Instance.new("CharacterMesh")
  1054.  
  1055. CharacterMesh.Name = "ROBLOX 2.0 Torso"
  1056.  
  1057. CharacterMesh.BodyPart = "Torso"
  1058.  
  1059. CharacterMesh.MeshId = "27111894"
  1060.  
  1061. CharacterMesh.Parent = Player.Character
  1062.  
  1063. local CharacterMesh = Instance.new("CharacterMesh")
  1064.  
  1065. CharacterMesh.Name = "ROBLOX 2.0 Left Arm"
  1066.  
  1067. CharacterMesh.BodyPart = "LeftArm"
  1068.  
  1069. CharacterMesh.MeshId = "27111419"
  1070.  
  1071. CharacterMesh.Parent = Player.Character
  1072.  
  1073. local CharacterMesh = Instance.new("CharacterMesh")
  1074.  
  1075. CharacterMesh.Name = "ROBLOX 2.0 Right Arm"
  1076.  
  1077. CharacterMesh.BodyPart = "RightArm"
  1078.  
  1079. CharacterMesh.MeshId = "27111864"
  1080.  
  1081. CharacterMesh.Parent = Player.Character
  1082. local CharacterMesh = Instance.new("CharacterMesh")
  1083.  
  1084. CharacterMesh.Name = "ROBLOX 2.0 Left Leg"
  1085.  
  1086. CharacterMesh.BodyPart = "LeftLeg"
  1087.  
  1088. CharacterMesh.MeshId = "27111857"
  1089.  
  1090. CharacterMesh.Parent = Player.Character
  1091. local CharacterMesh = Instance.new("CharacterMesh")
  1092.  
  1093. CharacterMesh.Name = "ROBLOX 2.0 Right Leg"
  1094.  
  1095. CharacterMesh.BodyPart = "RightLeg"
  1096.  
  1097. CharacterMesh.MeshId = "27111882"
  1098.  
  1099. CharacterMesh.Parent = Player.Character
  1100. end
  1101. end
  1102. end
  1103. elseif Command == "thane" then
  1104. for _, Arg in pairs(Arguments) do
  1105. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1106. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1107. local CharacterMesh = Instance.new("CharacterMesh")
  1108.  
  1109. CharacterMesh.Name = "ROBLOX 2.0 Torso"
  1110.  
  1111. CharacterMesh.BodyPart = "Torso"
  1112.  
  1113. CharacterMesh.MeshId = "29352185"
  1114.  
  1115. CharacterMesh.Parent = Player.Character
  1116. local CharacterMesh = Instance.new("CharacterMesh")
  1117.  
  1118. CharacterMesh.Name = "ROBLOX 2.0 Torso"
  1119.  
  1120. CharacterMesh.BodyPart = "Torso"
  1121.  
  1122. CharacterMesh.MeshId = "29352185"
  1123.  
  1124. CharacterMesh.Parent = Player.Character
  1125.  
  1126. local CharacterMesh = Instance.new("CharacterMesh")
  1127.  
  1128. CharacterMesh.Name = "ROBLOX 2.0 Left Arm"
  1129.  
  1130. CharacterMesh.BodyPart = "LeftArm"
  1131.  
  1132. CharacterMesh.MeshId = "29350945"
  1133.  
  1134. CharacterMesh.Parent = Player.Character
  1135.  
  1136. local CharacterMesh = Instance.new("CharacterMesh")
  1137.  
  1138. CharacterMesh.Name = "ROBLOX 2.0 Right Arm"
  1139.  
  1140. CharacterMesh.BodyPart = "RightArm"
  1141.  
  1142. CharacterMesh.MeshId = "29351058"
  1143.  
  1144. CharacterMesh.Parent = Player.Character
  1145. local CharacterMesh = Instance.new("CharacterMesh")
  1146.  
  1147. CharacterMesh.Name = "ROBLOX 2.0 Left Leg"
  1148.  
  1149. CharacterMesh.BodyPart = "LeftLeg"
  1150.  
  1151. CharacterMesh.MeshId = "29351023"
  1152.  
  1153. CharacterMesh.Parent = Player.Character
  1154. local CharacterMesh = Instance.new("CharacterMesh")
  1155.  
  1156. CharacterMesh.Name = "ROBLOX 2.0 Right Leg"
  1157.  
  1158. CharacterMesh.BodyPart = "RightLeg"
  1159.  
  1160. CharacterMesh.MeshId = "29351094"
  1161.  
  1162. CharacterMesh.Parent = Player.Character
  1163. end
  1164. end
  1165. end
  1166. elseif Command == "alien" then
  1167. for _, Arg in pairs(Arguments) do
  1168. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1169. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1170. local CharacterMesh = Instance.new("CharacterMesh")
  1171.  
  1172. CharacterMesh.Name = "ROBLOX 2.0 Torso"
  1173.  
  1174. CharacterMesh.BodyPart = "Torso"
  1175.  
  1176. CharacterMesh.MeshId = "27493004"
  1177.  
  1178. CharacterMesh.Parent = Player.Character
  1179. local CharacterMesh = Instance.new("CharacterMesh")
  1180.  
  1181. CharacterMesh.Name = "ROBLOX 2.0 Torso"
  1182.  
  1183. CharacterMesh.BodyPart = "Torso"
  1184.  
  1185. CharacterMesh.MeshId = "27493004"
  1186.  
  1187. CharacterMesh.Parent = Player.Character
  1188.  
  1189. local CharacterMesh = Instance.new("CharacterMesh")
  1190.  
  1191. CharacterMesh.Name = "ROBLOX 2.0 Left Arm"
  1192.  
  1193. CharacterMesh.BodyPart = "LeftArm"
  1194.  
  1195. CharacterMesh.MeshId = "27492984"
  1196.  
  1197. CharacterMesh.Parent = Player.Character
  1198.  
  1199. local CharacterMesh = Instance.new("CharacterMesh")
  1200.  
  1201. CharacterMesh.Name = "ROBLOX 2.0 Right Arm"
  1202.  
  1203. CharacterMesh.BodyPart = "RightArm"
  1204.  
  1205. CharacterMesh.MeshId = "27493061"
  1206.  
  1207. CharacterMesh.Parent = Player.Character
  1208. local CharacterMesh = Instance.new("CharacterMesh")
  1209.  
  1210. CharacterMesh.Name = "ROBLOX 2.0 Left Leg"
  1211.  
  1212. CharacterMesh.BodyPart = "LeftLeg"
  1213.  
  1214. CharacterMesh.MeshId = "27493033"
  1215.  
  1216. CharacterMesh.Parent = Player.Character
  1217. local CharacterMesh = Instance.new("CharacterMesh")
  1218.  
  1219. CharacterMesh.Name = "ROBLOX 2.0 Right Leg"
  1220.  
  1221. CharacterMesh.BodyPart = "RightLeg"
  1222.  
  1223. CharacterMesh.MeshId = "27493073"
  1224.  
  1225. CharacterMesh.Parent = Player.Character
  1226. end
  1227. end
  1228. end
  1229. elseif Command == "tools" then
  1230. local People = Game:GetService("Players"):GetPlayers()
  1231. local Names = {}
  1232. for _, v in pairs(People) do
  1233. table.insert(Names, v.Name)
  1234. end
  1235. local OptionChoosen = Prompt(player, unpack(Names))
  1236. print(OptionChoosen)
  1237. if OptionChoosen and game:GetService("Players"):FindFirstChild(OptionChoosen) then
  1238. if game:GetService("Players")[OptionChoosen].Character then
  1239. print(" lego ")local hopperbin = Instance.new("HopperBin")
  1240. hopperbin.BinType = "GameTool"
  1241. hopperbin.Parent = game:GetService("Players") [OptionChoosen].Backpack
  1242. local hopperbintwo = Instance.new("HopperBin")
  1243. hopperbintwo.BinType = "Hammer"
  1244. hopperbintwo.Parent = game:GetService("Players") [OptionChoosen].Backpack
  1245. local hopperbinthree = Instance.new("HopperBin")
  1246. hopperbinthree.BinType = "Clone"
  1247. hopperbinthree.Parent = game:GetService("Players") [OptionChoosen].Backpack
  1248. end
  1249. else
  1250. print("Player missing")
  1251. end
  1252. elseif Command == "strong" then
  1253. for _, Arg in pairs(Arguments) do
  1254. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1255. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1256. local CharacterMesh = Instance.new("CharacterMesh")
  1257.  
  1258. CharacterMesh.Name = "ROBLOX 2.0 Torso"
  1259.  
  1260. CharacterMesh.BodyPart = "Torso"
  1261.  
  1262. CharacterMesh.MeshId = "32328670"
  1263.  
  1264. CharacterMesh.Parent = Player.Character
  1265. local CharacterMesh = Instance.new("CharacterMesh")
  1266.  
  1267. CharacterMesh.Name = "ROBLOX 2.0 Torso"
  1268.  
  1269. CharacterMesh.BodyPart = "Torso"
  1270.  
  1271. CharacterMesh.MeshId = "32328670"
  1272.  
  1273. CharacterMesh.Parent = Player.Character
  1274.  
  1275. local CharacterMesh = Instance.new("CharacterMesh")
  1276.  
  1277. CharacterMesh.Name = "ROBLOX 2.0 Left Arm"
  1278.  
  1279. CharacterMesh.BodyPart = "LeftArm"
  1280.  
  1281. CharacterMesh.MeshId = "32328397"
  1282.  
  1283. CharacterMesh.Parent = Player.Character
  1284.  
  1285. local CharacterMesh = Instance.new("CharacterMesh")
  1286.  
  1287. CharacterMesh.Name = "ROBLOX 2.0 Right Arm"
  1288.  
  1289. CharacterMesh.BodyPart = "RightArm"
  1290.  
  1291. CharacterMesh.MeshId = "32328563"
  1292.  
  1293. CharacterMesh.Parent = Player.Character
  1294. local CharacterMesh = Instance.new("CharacterMesh")
  1295.  
  1296. CharacterMesh.Name = "ROBLOX 2.0 Left Leg"
  1297.  
  1298. CharacterMesh.BodyPart = "LeftLeg"
  1299.  
  1300. CharacterMesh.MeshId = "32328520"
  1301.  
  1302. CharacterMesh.Parent = Player.Character
  1303. local CharacterMesh = Instance.new("CharacterMesh")
  1304.  
  1305. CharacterMesh.Name = "ROBLOX 2.0 Right Leg"
  1306.  
  1307. CharacterMesh.BodyPart = "RightLeg"
  1308.  
  1309. CharacterMesh.MeshId = "32328627"
  1310.  
  1311. CharacterMesh.Parent = Player.Character
  1312. end
  1313. end
  1314. end
  1315. elseif Command == "obc" then
  1316. for _, Arg in pairs(Arguments) do
  1317. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1318. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1319. Player.MembershipTypeReplicate = 3
  1320. end
  1321. end
  1322. end
  1323. elseif Command == "ranbc" then
  1324. for _, Arg in pairs(Arguments) do
  1325. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1326. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1327. while true do
  1328. wait(0.1)
  1329. Player.MembershipTypeReplicate = math.random(1,3)
  1330. end
  1331. end
  1332. end
  1333. end
  1334. elseif Command == "tbc" then
  1335. for _, Arg in pairs(Arguments) do
  1336. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1337. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1338. Player.MembershipTypeReplicate = 2
  1339. end
  1340. end
  1341. end
  1342. elseif Command == "bc" then
  1343. for _, Arg in pairs(Arguments) do
  1344. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1345. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1346. Player.MembershipTypeReplicate = 1
  1347. end
  1348. end
  1349. end
  1350. elseif Command == "ff" then
  1351. for _, Arg in pairs(Arguments) do
  1352. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1353. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1354. ff = Instance.new ("ForceField")
  1355. ff.Parent = Player.Character
  1356. end
  1357. end
  1358. end
  1359. elseif Command == "unff" then
  1360. for _, Arg in pairs(Arguments) do
  1361. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1362. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1363. Player.Character:findFirstChild("ForceField"):Remove()
  1364. end
  1365. end
  1366. end
  1367. end
  1368. elseif Command == "nbc" then
  1369. for _, Arg in pairs(Arguments) do
  1370. for k, Player in pairs(Game:GetService("Players"):GetPlayers()) do
  1371. if Player.Name:lower():find(Arg:lower()) == 1 and Player.Character then
  1372. Player.MembershipTypeReplicate = 0
  1373. end
  1374. end
  1375. end
  1376. end
  1377. end
  1378. game:GetService("Players").PlayerAdded:connect(onPlayerAdded)
  1379. --[ SB Mode ]--
  1380. for _, player in pairs(game:GetService("Players"):GetPlayers()) do
  1381. onPlayerAdded(player)
  1382. end
  1383. Game:GetService("RunService").Stepped:connect(function()
  1384. local S, E = pcall(function()
  1385. if LastClean == nil or time() - LastClean >= 10 then do
  1386. collectgarbage("collect")
  1387. LastClean = time()
  1388. end
  1389. end
  1390. if not S then
  1391. ErrorHandler(E)
  1392. end
  1393. end)
  1394. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement