Making a pie chart style load UI

How would I make a circular loading screen? Meaning it would start out as a tick, at 50% would be a half circle and at 75% would legit be 270 degree circle? I’m wondering how I would do this… Maybe get an image of a circle that covers the center and make an algorithm with a square? Anyone got any scripts for this?

2 Likes

there have been plenty of attempts at a radial loading bar in the past, here are some of them from the forum;

and a model someone made;
https://www.roblox.com/games/2269137163/Free-Circular-Progress-Bars

4 Likes

You can use something like a semicircle on top of a semicircle. You can use ZIndex to change how it clips. An example would be to have a semicircle at the bottom that is under the background semicircle at bottom. Then you rotate it until you reach 180 degrees. At that point a copy of the front semicircle would be made in the same position but this time above the background semicircle. Then it rotates and clips on top of it.

5 Likes