I want to rotate the plane to the sides like this but using cframes (the video is using orientation and causing some trouble with the welds, so i need a cframe way to do this)
Currenly Im using CFrames but it rotates to the sides like this and sometimes will just make the plane flipped
if d_pressed then
currentseat.Parent.PlaneMesh.CFrame *= CFrame.Angles(0, math.rad(-45/50), 0)
--currentseat.Parent.PlaneMesh.Orientation += Vector3.new(0, -1.5, 0)
end
if a_pressed then
currentseat.Parent.PlaneMesh.CFrame *= CFrame.Angles(0, math.rad(45/50), 0)
--currentseat.Parent.PlaneMesh.Orientation += Vector3.new(0, 1.5, 0)
end
I would appreciate the help thanks.