Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Will this click door work?

Asked by 11 years ago

Will it work?

01H = game.Workspace.Part
02 
03function onClick(Part)
04H.Transparency = 0.5
05H.CanCollide = false
06wait(5)
07H.Transparency = 0
08H.CanCollide = true
09end
10 
11script.Parent.ClickDetector.MouseClick:connect(onClicked)
  • Newbie at scripting here...

4 answers

Log in to vote
1
Answered by 11 years ago

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.

0
Thanks gecko :D bloonblaster2000 55 — 11y
0
No problem :3 geckohero17 55 — 11y
Ad
Log in to vote
1
Answered by 11 years ago

Yes, I tried it, It should work

Log in to vote
1
Answered by 11 years ago

Insert a click detector into the part you put this script in and change line 11 to

1script.Parent.ClickDetector.MouseClick:connect(onClicked)
Log in to vote
0
Answered by 11 years ago
1script.Parent.ClickDetector.MouseClick:connect(function()

Answer this question