Stamina Wheel Buggy

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    I need to fix this stamina wheel. I used this post to help make it: Is there a SMALL Circular Progress Bar that appears decently?
  2. What is the issue? Include screenshots / videos if possible!
    The left side of the stamina wheel isn’t working as intended.
    es

  1. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I can’t find anything similar to this. I tried to change size and ScaleType.
    After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
-- local function circularFill(fillDegree)
	fillDegree = math.fmod(fillDegree, 360)
	if fillDegree < 180 and fillDegree > -180 then
		rightGradient.Rotation = fillDegree
		leftGradient.Rotation = 0
	else
		rightGradient.Rotation = 180
		leftGradient.Rotation = fillDegree - 180
	end
end

Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.