I thought this would work:
frame=script.Parent p=script.Parent.Position while true do for i=0,360, 0.1 do print(i) p.Rotation=i wait(0.01) end end
Sorry for the stupid question, I'm not quite familiar with GUI's, so help would be appreciated! Thanks anyway!
Rotation is not inside the frame's position You could do this (I think):
frame = script.Parent while wait() do --EDIT: changed from wait() to wait(0.01) frame.Rotation = frame.Rotation+1 end
Tested it in solo and it works.