I am trying to make a loading circle like the Window’s 10 loading screen one. But how can I make it work? I don’t have much experience with tweening as to me it is very hard, but by any chance is this possible? Seems like a hard thing to animate.
1 Like
I’m not sure which loading circle you’re talking about, but if it’s the one I’m thinking of I’m not sure whether tween is the best way of doing it since tweens move an instance using the most direct route. If you calculate points along the circumference of a circle (with the size of your choosing) and then move GUI circles to those points using RunService it might work.
edit:
This thread explains pretty well why you can’t tween rotation using a separate origin:
I’m basing this off this loading circle:
1 Like
i guess you mean the loading circle if yes i think you can have an image label and then tween its rotation using TweenService | Roblox Creator Documentation
1 Like
That is the exact one I am talking about, thanks for the info.