i need some help With this custom Health bar something went wrong i do not know what help me
local Char = workspace:FindFirstChild(script.Parent.Parent.Parent.Character) hum = Char.Humanoide hum.Changed:connect(function() script.Parent.Frame.Health.Frame.Size = Udim2.new(hum.Health/hum.MaxHealth,0,1,0) script.Parent.Frame.potet.TextLabel.Text = ""..hum.Health.."/"..hum.MaxHealth.."" if hum.Health <= hum.MaxHealth*0.15 then script.Parent.Frame.Health.Frame.BackgroundColor3 = Color3.new = (139,0,0) else script.Parent.Frame.Health.Frame.BackgroundColor3 = Color3.new = (213,5,5) end end)
local Char = workspace:FindFirstChild(script.Parent.Parent.Parent.Character) hum = Char.Humanoide hum.Changed:connect(function() script.Parent.Frame.Health.Frame.Size = Udim2.new(hum.Health/hum.MaxHealth,0,1,0) script.Parent.Frame.potet.TextLabel.Text = ""..hum.Health.."/"..hum.MaxHealth.."" if hum.Health <= hum.MaxHealth*0.15 then script.Parent.Frame.Health.Frame.BackgroundColor3 = Color3.new (139,0,0)--incorrect format else script.Parent.Frame.Health.Frame.BackgroundColor3 = Color3.new(213,5,5)--incorrect format end end)