I am trying to create a cframe with a position and orientation to set a model.Not sure how to combine them two.
local SideOne = Vector3.new(0,0,0) local OldPos = Cube.MainCube.Position Cube.MainCube.Orientation = SideOne Cube:SetPrimaryPartCFrame(CFrame.new( ))--CFrame would go here
You can create a CFrame as you are and set the orientation using CFrame.Angles() like so:
CFrame.new(0,0,0) * CFrame.Angles(0,0,0)
When using this however you must bare in mind that CFrame.Angles() works in radians and therefore any degree values you have must be converted using math.rad()