So currently if you turn on an auto clicker on a textbutton there is no delay (or very small) between the clicks. How do I make it so there is a 1-second delay?
You can add a variable debounce.
Example
debounce = false TextLabel.MouseButton1Click:Connect(function() if debounce then return end --code here debounce = true wait(1) end)
gah. i think this works edit: last code was for a clickdetector, i'm blind.