I want this health bar to go right, not left.
(75 health)
This is what I want to achieve, I have no clue how to do this.
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)