for i = 1, 360, 1 do wait() print(i) script.Parent.Rotation = i end
This simple for loop makes an image rotate around, but once i = 360 it stops. How can I get this so the image constantly spins around, instead of spinning once and then stopping?
You can nest this "for" loop in a "while" loop.
while true do for i = 1, 360 do wait() print(i) script.Parent.Rotation = i end end