I have the typical
CFrame.Angles(0,0,0)
But I cant figure out what method to use. Any help?
part.CFrame = part.CFrame * CFrame.Angles(0, 0, 0)
Remember, the inputted numbers have to be in radians, so:
... CFrame.Angles(0, math.rad(90), 0)
will rotate it on the Y axis 90 degrees.