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:
while true do wait(0.1) script.Parent.Rotation = script.Parent.Rotation +5 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
while true do wait(0.01) script.Parent.Rotation = script.Parent.Rotation +5 end