I'm trying to make an ImageLabel spin however I am unsure of what code I would need to use. I have attempted to code this however it's hard to explain what happens it like, spins at an odd angle alway here's the code:
1 | while true do |
2 | wait( 0.1 ) |
3 | script.Parent.Rotation = script.Parent.Rotation + 5 |
4 | end |
Help on improving this would be greatly appreciated, thanks. - AlexHypee
I know this is 4 years late but if anyone looks into it as I have. Here's the fixed version
1 | while true do |
2 | wait( 0.01 ) |
3 | script.Parent.Rotation = script.Parent.Rotation + 5 |
4 | end |