I cannot figure out how I make this door rotate and position properly with CFrames. Any Help?
Basically I want this door to be able to move properly even with different positions and rotations. For some reason it constantly moves in some random ways I never can fix. Here are some images to help anyone willing to help me out figure this out. Thank you for reading all of this and hopefully I can figure it out and maybe learn something in the end.
before Opening
After opening
01 | local Knob = script.Parent.Knob |
03 | local Frame = script.Parent.Frame |
05 | local Screen = script.Parent.Screen |
07 | local deg = Frame.Orientation.Y |
09 | local Open = script.Parent.Open |
12 | Frame.CFrame = CFrame.new(Frame.Position.X + 2.25 ,Frame.Position.Y,Frame.Position.Z + 2.25 ) |
13 | Frame.Orientation = Vector 3. new( 0 , deg - 90 , 0 ) |
14 | Knob.CFrame = CFrame.new(Knob.Position.X - 4 ,Knob.Position.Y,Knob.Position.Z - 4 ) |
15 | Knob.Orientation = Vector 3. new( 0 , deg + 90 , 0 ) |
16 | Screen.CFrame = CFrame.new(Screen.Position.X - 2.1 ,Screen.Position.Y,Screen.Position.Z - 2.1 ) |
17 | Screen.Orientation = Vector 3. new( 0 , deg + 90 , 0 ) |
18 | script.Parent.OpenFX:Play() |
22 | Frame.CFrame = CFrame.new(Frame.Position.X - 2.25 ,Frame.Position.Y,Frame.Position.Z - 2.25 ) |
23 | Frame.Orientation = Vector 3. new( 0 , deg - 90 , 0 ) |
24 | Knob.CFrame = CFrame.new(Knob.Position.X - 4 ,Knob.Position.Y,Knob.Position.Z - 4 ) |
25 | Knob.Orientation = Vector 3. new( 0 , deg - 90 , 0 ) |
26 | Screen.CFrame = CFrame.new(Screen.Position.X - 2.1 ,Screen.Position.Y,Screen.Position.Z - 2.1 ) |
27 | Screen.Orientation = Vector 3. new( 0 , deg - 90 , 0 ) |
28 | script.Parent.OpenFX:Play() |
31 | Open.Changed:Connect( function () |
32 | print ( "adasadsdasdas" ) |
33 | if Open.Value = = true then |
44 | if Open.Value = = false then |
45 | if script.Parent.Broken.Value = = false and Open.Value = = false then |
49 | elseif script.Parent.Broken.Value = = false then |
56 | Knob.ClickDetector.MouseClick:Connect(KnobClicked) |
If you have any questions I perfer using Discord, but I also can tr and check up on here although Im not too active anymore.