I need a imageLabel to spin like the roblox loading screen logo but not linear like spin slow, then fast, etc.
I tried imageLabel.Rotation += 2 but that makes it spins linear.
first post btw so please help me out
To avoid having the spin be linear, it would be highly inefficient to make a loop that adds onto the rotation, so the best choice here for you would be to use TweenService to create a tween that tweens the image’s rotation value, at your own easing style.
You could use a loop with two different tweens to achieve a fast then slow rotation, as many times as you like, or for example, a while loop to keep going until a condition is met.