The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Planet Mining Simulator script pastebin roblox
By LINK GAME on 2024-09-21 08:00 am | Syntax: LUA | Views: 10



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("Planet Mining Simulator")
  3. local b = w:CreateFolder("AutoFarm")
  4. local f = w:CreateFolder("AutoBuy")
  5. local e = w:CreateFolder("Mix")
  6. local u = w:CreateFolder("Credits")
  7. --Toggle
  8. b:Toggle("AutoTpOrbs",function(bool)
  9.     shared.toggle = bool
  10.     AutoTpOrbs = bool
  11. end)
  12.  
  13. b:Toggle("AutoSell",function(bool)
  14.     shared.toggle = bool
  15.     AutoSell = bool
  16. end)
  17.  
  18. e:Toggle("AutoClaimAchiev",function(bool)
  19.     shared.toggle = bool
  20.     AutoClaimAchiev = bool
  21. end)
  22.  
  23. e:Toggle("AntiAfk",function(bool)
  24.     shared.toggle = bool
  25.     AntiAfk = bool
  26. end)
  27.  
  28. e:Button("Get Inf Backpack",function()
  29.     for i,v in pairs(game:GetService("ReplicatedStorage").ShopItems.BackpackShop:GetChildren()) do
  30.         game:GetService("ReplicatedStorage").Remotes.CIient:FireServer("BuyBackpack",v.Name)
  31.     end
  32.     game:GetService("ReplicatedStorage").Remotes.Inventory.equipCategory:FireServer("Infinite Backpack","Infinite Backpack","Backpacks")
  33. end)
  34.  
  35. f:Toggle("Common Chest",function(bool)
  36.     shared.toggle = bool
  37.     Common = bool
  38. end)
  39.  
  40. f:Toggle("Elite Chest",function(bool)
  41.     shared.toggle = bool
  42.     Elite = bool
  43. end)
  44.  
  45. f:Toggle("Goldy Chest",function(bool)
  46.     shared.toggle = bool
  47.     Goldy = bool
  48. end)
  49.  
  50. f:Button("Vacuum",function()
  51.     for i,v in pairs(game:GetService("ReplicatedStorage").ShopItems.VacuumShop:GetChildren()) do
  52.         game:GetService("ReplicatedStorage").Remotes.CIient:FireServer("BuyVacuum",v.Name)
  53.     end
  54. end)
  55.  
  56. f:Button("Backpack",function()
  57.     for i,v in pairs(game:GetService("ReplicatedStorage").ShopItems.BackpackShop:GetChildren()) do
  58.         game:GetService("ReplicatedStorage").Remotes.CIient:FireServer("BuyBackpack",v.Name)
  59.     end
  60. end)
  61.  
  62. --Credits
  63. u:Button("maxgat5#8395",function()
  64.     setclipboard("maxgat5#8395")
  65. end)
  66.  
  67. u:Button("Discrod Server",function()
  68.     setclipboard("https://discord.gg/K4txdRSVfq")
  69. end)
  70.  
  71. game:GetService('RunService').Stepped:connect(function()
  72.     if AutoTpOrbs == true then
  73.         game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  74.     end
  75. end)
  76.  
  77. while wait() do
  78.     if Goldy == true then
  79.         game:GetService("ReplicatedStorage").Remotes.Chest.purchaseChest:FireServer("Godly Chest")
  80.     end
  81.    
  82.     if Elite == true then
  83.         game:GetService("ReplicatedStorage").Remotes.Chest.purchaseChest:FireServer("Elite Chest")
  84.     end
  85.    
  86.     if Common == true then
  87.         game:GetService("ReplicatedStorage").Remotes.Chest.purchaseChest:FireServer("Common Chest")
  88.     end
  89.  
  90.     if AutoClaimAchiev == true then
  91.         for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.UI.StarAchievements.ScrollingFrame:GetChildren()) do
  92.             game:GetService("ReplicatedStorage").Remotes.Achievements:FireServer(v.Name)
  93.         end
  94.     end
  95.    
  96.     if AutoTpOrbs == true then
  97.         for i,v in pairs(game:GetService("Workspace").Mine.Ores:GetChildren()) do
  98.             for i,v1 in pairs(v:GetChildren()) do
  99.                 if v1.ClassName == "MeshPart" then
  100.                     local tweenInfo = TweenInfo.new(
  101.                     0
  102.                     )
  103.                     local t = game.TweenService:Create(game.Players.LocalPlayer.Character.PrimaryPart, tweenInfo, {CFrame = CFrame.new(
  104.                     v1.Position
  105.                     )})
  106.                     game.Players.LocalPlayer.Character.PrimaryPart.Anchored = true
  107.                     t:Play()
  108.                     wait(0)
  109.                     game.Players.LocalPlayer.Character.PrimaryPart.Anchored = false
  110.                     wait(5)
  111.                 end
  112.             end
  113.         end
  114.     end
  115.    
  116.     if AutoSell == true then
  117.         game:GetService("ReplicatedStorage").Remotes.CIient:FireServer("SellEverything")
  118.     end
  119.    
  120.     if AntiAfk == true then
  121.         local bb=game:service'VirtualUser'
  122.         bb:CaptureController()
  123.         bb:ClickButton2(Vector2.new())
  124.     end
  125. end