#Make a thing only clickable once….. HOW??????
1 messages · Page 1 of 1 (latest)
depends on the thing in question
-- ui element
button.MouseButton1Click:Once(function()
-- stuff
end)
-- clickdetector
clickDetector.MouseClick:Once(function()
-- stuff
end)
This, and then disconnect at the end of the function to remove the event once it's been clicked the first time.
:Once automatically disconnects the connection itself after the first time the event fires
Oh I’m blind I didn’t see that
THANK !!!!!!!!!!!