I've always wondered how to do this. I know you can do it slowly or with for loops, but I need to know how to do it better, if possible. Any help?
You could make a for loop for an animation. For loops would work because they count up, hence their values. If you wanted to rotate, lets say, a part in the workspace called Lol you would do this (with a for loop to give it anim affect.)
1 | for i = 1 , 60 do |
2 | Workspace.Lol.CFrame = CFrame.Angles(i* 3 , 0 , 0 ) |
3 | wait( 0.06 ) |
4 | end |