I have a, let's say, part with a rotation of Vector3(0,41.5,0) and I want to rotate it 180 degrees on the Y axis. If I write 221.5 it doesn't work.
Do I have to add like Vector3.new(0,math.rad(180),0) or something? Help
Do like this:
game.Workspace.Part.CFrame = game.Workspace.Part.CFrame * CFrame.Angles(0,math.rad(180),0)
Also, you don't use math.rad in Vector3, math.rad Translates in Radians, Vector3 is in radians already.