Advertisement
xXGokyXx

HH Auto Drop Collector

Apr 12th, 2019
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. --Go into full screen, execute this and my auto fight script, and watch it collect most items dropped!
  2. --This moves the mouse externally so this should be undetectable
  3. --xXGokyXx
  4.  
  5. mouse = game.Players.LocalPlayer:GetMouse()
  6.  
  7. function Scan()
  8. while mouse.Y < 600 do
  9. while mouse.X < 1500 do
  10. wait()
  11. mousemoverel(30,0)
  12. end
  13. mousemoverel(0,30)
  14. while mouse.X > 500 do
  15. wait()
  16. mousemoverel(-50,0)
  17. end
  18. end
  19. gotoTopLeft() --Delete this if for whatever reason you don't want it looped
  20. end
  21.  
  22.  
  23. function gotoTopLeft()
  24. while mouse.X > 500 do
  25. wait()
  26. mousemoverel(-30,0)
  27. end
  28. while mouse.Y > 500 do
  29. wait()
  30. mousemoverel(0,-30)
  31. end
  32. Scan()
  33. end
  34.  
  35. gotoTopLeft()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement