Meliodas0_0

Auto Click

Oct 27th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local time = 0.00 --decrease if too slow increase if too fast
  2.  
  3. click = false
  4. m = game.Players.LocalPlayer:GetMouse()
  5. m.KeyDown:connect(function(key)
  6. if key == "h" then
  7. if click == true then click = false
  8. elseif
  9. click == false then click = true
  10.  
  11. print "press h toggle"
  12. while click == true do
  13. wait(time)
  14. mouse1click()
  15. end
  16. end
  17. end
  18. end)
Add Comment
Please, Sign In to add comment