I do not Know Lua Lua C or Script I know a little bit of scripting tho! Help please!!!!
To make a cooldown you would want to use debounce example: it can be named anything not just debounce
local debounce = false tool.Activated:connect(function() if debounce == false then debounce = true print('henlo my dudes') -- the stuff you want to be activated for the script wait(.25) -- cooldown debounce = false -- makes it false so it can run again end end)
Closed as Not Constructive by BlackOrange3343 and cabbler
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?