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?
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.
1 | knob = script.Parent --The name of the part the script is in |
2 | door = script.Parent.Parent.door --the name of the part you want to open |
3 | c = Instance.new( "ClickDetector" ,knob) -- adding a clickdetector to it. |
4 |
5 | function onClick() |
6 | knob.CFrame = knob.CFrame *CFrame.Angles( 0 , 0 , 1 ) --changed the position of the door on the z axis |
7 |
8 | end |
9 | knob.ClickDetector.MouseClick:connect(onClick) -- connect it and done |
This script requires the Door and the Handle (Knob as you chose to call it) to be in a group together.
01 | local Handle = script.Parent |
02 | local Door = Handle.Parent.Door --Door part must be called 'Door' |
03 | local = Clicker = Instance.new( "ClickDetector" , Handle) |
04 |
05 | function onClick() |
06 | Handle.Transparency = 1 |
07 | Door.Transparenc = 1 |
08 | wait( 5 ) |
09 | Handle.Transparency = 0 |
10 | Door.Transparency 0 |
11 | end |
12 | Clicker.MouseClick:connect(onClick() |
13 | --Hope it helps |