I have recently have been wanting to make a simulator and I don't want people to cheat in my game using auto clickers and stuff like that and whoever does should get kicked
This should do the trick, I guess.
local clicks, limit, timer = 0, 100, 1 function playerClicked() if clicks < limit then clicks = clicks + 1 -- Do whatever you want here end end while wait(timer) do clicks = 0 end