Advertisement
Guest User

Magnet simulator update 25 scripts (Best AutoFarm)

a guest
Nov 4th, 2019
1,828
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. Remove full backpack:
  2. game.Players.LocalPlayer.PlayerGui.GameHUD.FullBackpack:Destroy()
  3.  
  4.  
  5. Auto sell coins:
  6. _G.on = true
  7. local plr = game.Players.LocalPlayer
  8. local char = plr.Character.HumanoidRootPart
  9.  
  10. while _G.on do
  11. game.Workspace.Rings.Sellx2.CanCollide = false
  12. game.Workspace.Rings.Sellx2.Transparency = 1
  13. game.Workspace.Rings.Sellx2.CFrame = char.CFrame + Vector3.new(0,math.random(-1,1),0)
  14. wait(0.1)
  15. end
  16.  
  17.  
  18. Auto Farm coins:
  19. local r = game:GetService("ReplicatedStorage").Events.MagnetEvents.requestGrab
  20. local rs = game:GetService('RunService').RenderStepped
  21. while rs:wait() do
  22. tool = "Acid Pulse Dual Long Power Magnets"
  23. for i = 1,5 do
  24. r:FireServer("1040000000", game.ReplicatedStorage.Tools[tool])
  25. end
  26. end
  27.  
  28.  
  29.  
  30. Auto rebirth:
  31. _G.rebirth = true
  32. local rebirths = 125000--125000,100000,75000,50000,25000,10000,5000,2500,1000,500,250,100,50,25,5,1
  33. while _G.rebirth do
  34. game:GetService("ReplicatedStorage").RebirthEvents.requestRebirth:InvokeServer(rebirths)
  35. wait(3)
  36. end
  37.  
  38.  
  39. Open eggs:
  40. _G.egg = true
  41. local r = game:GetService("ReplicatedStorage").PetEvents.requesthatch
  42. local rs = game:GetService('RunService').RenderStepped
  43. while rs:wait() and _G.egg do
  44. r:FireServer("Infernal Egg") --20SX
  45. end
  46.  
  47.  
  48. Auto Shiny:
  49. _G.shiny = true
  50. local Shinys = game.ReplicatedStorage.Pets:GetChildren()
  51. while _G.shiny do
  52. wait(0.1)
  53. for i = 1,#Shinys do
  54. wait()
  55. game.ReplicatedStorage.ShinyEvents.requestMakeShiny:FireServer(Shinys[i].Name)
  56. end
  57. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement