here is the code I used:
game.Workspace.part.ClickDetector.MouseClick:Connect(function(player) print ("TESTING") game.Workspace.part.ClickDetector.parent = nil end)
So far , the clickdetector is not gone after the click... no print has been made either.
You should try deleting it with game.Workspace.Part.ClickDetector:Destroy()
game.Workspace.part.ClickDetector.MouseClick:Connect(function(player) print ("TESTING") wait(1) game.Workspace.part.ClickDetector:Destroy() end)
I did this and so far , nothing happened looks like it is impossible