i know how to do a Y 360 CFrame but ive been trying to make a full X Rotation / Left or Right i need some help on this.
You would use CFrame.Angles()
Here's an example of rotating the X CFrame:
1 | game.Workspace.Part.CFrame = game.Workspace.Part.CFrame * CFrame.Angles( 0 ,math.rad( 2 ), 0 ) |