when I click on the brick it does nothing. don't be amazed if there's a lot of errors I'm new.
01 | local door = game.Workspace.door |
02 | local boi = false |
03 | local goldy = game.Workspace.gold |
04 | local sound = script.Parent.Parent:WaitForChild( "Shock (A)" ) |
05 |
06 |
07 | local click = game.Workspace.gold.ClickDetector |
08 | click.MaxActivationDistance = 20 |
09 |
10 | script.Parent.MouseClick:Connect( function () |
11 | print ( "clicked" ) |
12 | sound:Play() |
13 | door.Transparency = 0.5 |
14 | door.CanCollide = false |
15 | end |
Because... Sense you are using a :Connect(function(). You need to add a ) at the end of the "end" so your script should be like this:
01 | local door = game.Workspace.door |
02 | local boi = false |
03 | local goldy = game.Workspace.gold |
04 | local sound = script.Parent.Parent:WaitForChild( "Shock (A)" ) |
05 |
06 |
07 | local click = game.Workspace.gold.ClickDetector |
08 | click.MaxActivationDistance = 20 |
09 |
10 | script.Parent.MouseClick:Connect( function () |
11 | print ( "clicked" ) |
12 | sound:Play() |
13 | door.Transparency = 0.5 |
14 | door.CanCollide = false |
15 | end ) |