So I have my ClickDetectorEvent.
clickdetector.MouseClick:Connect(function()
end
It doesn't matter what other script I have inside of the function but how would I make it not clickable once I click it?
Just simply put this in the script and you can only click a part once:
function onClicked() wait() script.Parent.ClickDetector:Destroy() end script.Parent.ClickDetector.MouseClick:connect(onClicked)