Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How to Make A clicking cooldown
- MrPurplewhoisSpaghet
-
1 post
How to Make A clicking cooldown
i am making a clicker game and i want it to have a cooldown to prevent autoclicker
- Debility_Kheops
-
1000+ posts
How to Make A clicking cooldown
You can add this, so the program will wait for you to click to continue.
wait until <not <mouse down?>>
- Alex_Ilya
-
1000+ posts
How to Make A clicking cooldown
when green flag clicked
set [time v] to [4]
forever
change [time v] by (1)
end
when green flag clicked
forever
if <<(time) > [3]> and <<touching [mouse-pointer v] ?> and <mouse down?>>> then
change [Score v] by (1)
set [time v] to [0]
wait until <not <mouse down?>>
end
end
Last edited by Alex_Ilya (Jan. 28, 2023 17:47:25)
- medians
-
1000+ posts
How to Make A clicking cooldown
Here:

You can change the delay by changing “wait 2 secs”

You can change the delay by changing “wait 2 secs”
- LOJMOSESrobloxplayer
-
28 posts
How to Make A clicking cooldown
when this sprite clicked
change [variable v] by (multiplier)
wait (cooldown time) secs
- Discussion Forums
- » Help with Scripts
-
» How to Make A clicking cooldown