I've wanted to make a spinning brick for a long time, I know how to do all rest of the code except the CFrame Orientation.
Please tell me how to change the Orientation of a brick via CFrame.
just use CFrame.Angles()
1 | local part = workspace.Part -- mayb this was the part |
2 |
3 | part.CFrame = part.CFrame * CFrame.Angles( 0 ,math.rad( 90 ), 0 ) -- rotate it by 90 degrees |