Advertisement
ScriptingGuy

Magnet Simulator Script

Mar 7th, 2020
3,807
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. The Game Link : https://www.roblox.com/games/3486025575/Magnet-Simulator
  2. Discord Link : https://discordapp.com/channels/686554761901768721/686664520596324435
  3.  
  4. --Auto Farm Coins
  5. local r = game:GetService("ReplicatedStorage").Events.MagnetEvents.requestGrab
  6. local rs = game:GetService('RunService').RenderStepped
  7. while rs:wait() do
  8. tool = "Acid Pulse Dual Long Power Magnets"
  9. for i = 1,5 do
  10. r:FireServer("1040000000", game.ReplicatedStorage.Tools[tool]) --- Don't change !
  11. end
  12. end
  13.  
  14.  
  15. --Auto Sell Coins
  16. _G.on = true
  17. local plr = game.Players.LocalPlayer
  18. local char = plr.Character.HumanoidRootPart
  19.  
  20. while _G.on do
  21. game.Workspace.Rings.Sellx2.CanCollide = false
  22. game.Workspace.Rings.Sellx2.Transparency = 1
  23. game.Workspace.Rings.Sellx2.CFrame = char.CFrame + Vector3.new(0,math.random(-1,1),0)
  24. wait(0.1)
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement