Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do I make a limited click detector?

Asked by 4 years ago
Edited 4 years ago

Please include the code which you are trying to use, so the community will be better-equipped to help you with your problem.
game.Workspace.ControlStationForTruck.Button.ClickDetector.MaxActivationDistance = 0
wait(10)
game.Workspace.ControlStationForTruck.Button.ClickDetector.MaxActivationDistance = 32

Is there a better way to write that?

1 answer

Log in to vote
1
Answered by
Kami_Yo 72
4 years ago

you can just add a wait and a debounce

local debounce = true
script.Parent.MouseButton1Click:Connect(function()

    if debounce then
        debounce = false
        wait(10)
        debounce = true
    end

end)
0
Thanks! sean_thecoolman 189 — 4y
0
I'm accepting your answer because I'm not letting this kid just get an answer and not accepting it. DeceptiveCaster 3761 — 4y
Ad

Answer this question