I am tying to add to CFrames for a door using CFrames I tried changing the Orientation and Position but it spun the wrong way. It worked using CFrames but I want to make the door and open relative to it's position I can't obviously add CFrames but is there a way?
To change an object's orientation do this:
local obj = workspace.Object --Name of your object obj.CFrame = obj.CFrame * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)) --Enter the number of degrees you want it to rotate on the x, y, and z axis.