how do you make it so a person would have to click a few times before there is an action that happens
local clicks = 0 local mouse = game.Players.LocalPlayer:GetMouse() mouse.Button1Down:connect(function() clicks = clicks + 1 if clicks == 5 then print("Five clicks have been made!") clicks = 0 -- Resets the click count. end end)