01 | workspace.CodeRedButton.ClickDetector.MouseClick:Connect( function () |
02 | script.Parent.ClickDetector:Destroy() |
03 | script.Parent.SurfaceGui.TextLabel.Text = "Please Wait" |
04 | wait( 5 ) |
05 | Instance.new( "ClickDetector" , script.Parent) |
06 | script.Parent.SurfaceGui.TextLabel.Text = "Disable Code Red" |
07 | end ) |
08 |
09 | script.Parent.ClickDetector.MouseClick:Connect( function () |
10 | for i,v in pairs (workspace.Lights.Lights:GetChildren()) do |
11 | if v:IsA( "Part" ) then |
12 | v.BrickColor = BrickColor.new( "White" ) |
13 | end |
14 | end |
15 | workspace.Breach:Stop() |
16 | wait( 3 ) |
17 | end ) |
2nd function doesn't work. No error codes.
It is not a good practice to destory the clickDetector, as when you create the new one you would need to reassign the events. Instead use a property on the clickDetector called "MaxActivationDistance" and set it to zero to disable the button.
1 | workspace.CodeRedButton.ClickDetector.MouseClick:Connect( function () |
2 | script.Parent.ClickDetector.MaxActivationDistance = 0 |
3 | script.Parent.SurfaceGui.TextLabel.Text = "Please Wait" |
4 | wait( 5 ) |
5 | script.Parent.ClickDetector.MaxActivationDistance = 32 |
6 | script.Parent.SurfaceGui.TextLabel.Text = "Disable Code Red" |
7 | end ) |