SmileyS

2d Anti AutoClicker | Roblox Studio

Sep 9th, 2021
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. local Clicks = 0
  2. local MaxClicks = 62
  3.  
  4. script.Parent.TextButton.MouseButton1Click:Connect(function()
  5. Clicks = Clicks + 1
  6. if Clicks == MaxClicks then
  7. game.Players.LocalPlayer:Kick("AutoClicker Detected!")
  8. end
  9. end)
  10.  
  11. while true do
  12. if Clicks ~= 0 then
  13. Clicks = Clicks - 1
  14. end
  15. wait(0.25)
  16. end
Advertisement
Add Comment
Please, Sign In to add comment