Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. -- Auto Sell:
  2. _G.on = true
  3. local plr = game.Players.LocalPlayer
  4. local char = plr.Character.HumanoidRootPart
  5.  
  6. while _G.on do
  7. game.Workspace.Rings.Sellx2.CanCollide = false
  8. game.Workspace.Rings.Sellx2.Transparency = 1
  9. game.Workspace.Rings.Sellx2.CFrame = char.CFrame + Vector3.new(0,math.random(-1,1),0)
  10. wait(0.1)
  11. end
  12.  
  13. -- Auto Farm:
  14. local r = game:GetService("ReplicatedStorage").Events.MagnetEvents.requestGrab
  15. local rs = game:GetService('RunService').RenderStepped
  16. while rs:wait() do
  17. tool = "Acid Pulse Dual Long Power Magnets"
  18. for i = 1,5 do
  19. r:FireServer("1040000000", game.ReplicatedStorage.Tools[tool])
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement