Will it work?
01 | H = game.Workspace.Part |
02 |
03 | function onClick(Part) |
04 | H.Transparency = 0.5 |
05 | H.CanCollide = false |
06 | wait( 5 ) |
07 | H.Transparency = 0 |
08 | H.CanCollide = true |
09 | end |
10 |
11 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |
Yep, seems to work. Although you may want to name your door something else, or put it into a model. Having it named as "Part" may confuse your script if other bricks are called Part.
Insert a click detector into the part you put this script in and change line 11 to
1 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |