I am trying to make rotating text on a screengui. The text will do a full 360 turn and be back normal, however, I am using a for loop and can't make it execute a certain number of times.
Attempt:
for I in 360 do wm.Rotation = wm.Rotation + 1 -- wm is WelcomeMsg, located in the same directory end
Can I please have some help?
Here we can see here you are trying to rotate the part like this: You has 2 error, your first was when you trying to use for i = 1, 360 do your second was at line 3 with rotation you forgot too put "Vector3"
for i = 1, 360 do wait(0.1) wm.Rotation = wm.Rotation + i end