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

How do I make a script that opens a door

Asked by 11 years ago

So that once you click the door knob, it opens the door. What are the procedures to connecting all the bricks as well to make them all move once you open it?

2 answers

Log in to vote
1
Answered by
Damo999 182
11 years ago

Well you would need to use a ClickDetector which you would put inside of the door knob after that you would inset a script into the door knob and the code would look something like this. You might want to weld the knob to the door so that the knob will move with the door.

1knob = script.Parent  --The name of the part the script is in
2door = script.Parent.Parent.door --the name of the part you want to open
3c = Instance.new("ClickDetector",knob) -- adding a clickdetector to it.
4 
5function onClick()
6    knob.CFrame = knob.CFrame *CFrame.Angles(0,0,1) --changed the position of the door on the z axis
7 
8end
9knob.ClickDetector.MouseClick:connect(onClick) -- connect it and done
Ad
Log in to vote
1
Answered by 11 years ago

This script requires the Door and the Handle (Knob as you chose to call it) to be in a group together.

01local Handle=script.Parent
02local Door=Handle.Parent.Door --Door part must be called 'Door'
03local = Clicker = Instance.new("ClickDetector", Handle)
04 
05function onClick()
06Handle.Transparency=1
07Door.Transparenc =1
08wait(5)
09Handle.Transparency=0
10Door.Transparency 0
11end
12Clicker.MouseClick:connect(onClick()
13--Hope it helps

Answer this question