bell = script.Parent function clickit() bell.ClickDetector:Destroy() wait(20) Instance.new("ClickDetector", bell) end bell.ClickDetector.MouseClick:connect(clickit)
This should make it so after you click the bell it removes the click detector for 20 seconds and puts a new one. It works the first time but after that I doesn't remove it.
Instead of removing the ClickDetector, you can access the MaxActivationDistance property. So:
01 | bell = script.Parent |
02 | activated = false |
03 |
04 | function clickit() |
05 | if activiated = = false then |
06 | activated = true -- I recommend setting a debounce in-case a player or more clicks it multiple times. |
07 | bell.ClickDetector.MaxActiviationDistance = 0 |
08 | wait( 20 ) |
09 | bell.ClickDetector.MaxActiviationDistance = 32 -- The default distance I believe |
10 | activated = false |
11 | end |
12 | end |
13 |
14 | bell.ClickDetector.MouseClick:connect(clickit) |