How do I make my health bar go the other way?

I want this health bar to go right, not left.
image

(75 health)
image

This is what I want to achieve, I have no clue how to do this.
image

Here Is my script:

local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")

humanoid.HealthChanged:Connect(function(Damage)
	script.Parent.Size = UDim2.new(humanoid.Health / humanoid.MaxHealth, 0, 1, 0)
end)
1 Like

Set the AnchorPoint to {1,0}, then set the position to {1,0,0,0}

3 Likes