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

I cannot figure out how I make this door rotate and position properly with CFrames. Any Help?

Asked by 5 years ago
Edited by DeceptiveCaster 5 years ago

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

01local Knob = script.Parent.Knob
02 
03local Frame = script.Parent.Frame
04 
05local Screen = script.Parent.Screen
06 
07local deg = Frame.Orientation.Y
08 
09local Open = script.Parent.Open
10 
11function OpenDoor()
12    Frame.CFrame = CFrame.new(Frame.Position.X + 2.25,Frame.Position.Y,Frame.Position.Z + 2.25)
13    Frame.Orientation = Vector3.new(0, deg - 90 , 0)
14    Knob.CFrame = CFrame.new(Knob.Position.X - 4,Knob.Position.Y,Knob.Position.Z - 4)
15    Knob.Orientation = Vector3.new(0, deg + 90 , 0)
View all 56 lines...

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.

1 answer

Log in to vote
2
Answered by 5 years ago

My best recommendation is to follow this video. It describes everything you need to make your door work!

If you have any questions or issues please contact me. ;)

0
+1 for recommending scriptguider programmerHere 371 — 5y
0
Yeah, I can explain it but I am dedicating some of my time. If there's any questions I can definitely help. lazycoolboy500 597 — 5y
0
Alright Ill try that out, thanks hopefully it works out. Sergiomontani10 236 — 5y
0
Thanks so much man that helped out alot I was stuck on that for awhile Sergiomontani10 236 — 5y
Ad

Answer this question