Advertisement
SigmaBoy456

Roblox AutoClick VirutalUser Example #842

Sep 2nd, 2024
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. -- Made by : https://v3rmillion.net/member.php?action=profile&uid=1642742
  2.  
  3. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/lime"))()
  4.  
  5. local w = Library:Window("Main")
  6.  
  7. local Virtual = game:GetService("VirtualUser")
  8. local active = nil
  9. _G.AutoClick = false
  10.  
  11. w:Toggle("Auto Click", function(v)
  12. _G.AutoClick = v
  13. if _G.AutoClick then
  14. active = true
  15. while _G.AutoClick do
  16. Virtual:Button1Down(Vector2.new(5, 0))
  17. wait()
  18. end
  19. end
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement