How to stop an auto clicker?

I think that this topic has already kind of shifted to a diff. category, I’m all figured with the auto clicker thing.

1 Like

Do anti-autoclicker local script inside player: (Just kicks player who using autoclicker)

local mouse = game.Players.LocalPlayer:GetMouse()
local clicks = 0
local maxClicks = 10 --You aren't able to click 10 times in 0.3 seconds without auto-clicker

mouse.Button1Down:Connect(function()
	clicks += 1
end)

while wait(0.3) do
	if clicks > maxClicks then
		game.Players.LocalPlayer:Kick("Don't use autoclicker")
	else
		clicks = 0
	end
end