This healthbar script is setting the color to a weird value?
Asked by
8 years ago Edited 7 years ago
So I made a healthbar script that works fine with tweening the position of the bar, but it does not set the color properly, I think it is setting the color to the math it is doing?
Code:
01 | game:GetService( "StarterGui" ):SetCoreGuiEnabled(Enum.CoreGuiType.Health, false ) |
02 | local player = game.Players.LocalPlayer |
03 | local character = game.Workspace:WaitForChild(player.Name) |
04 | local humanoid = game.Players.LocalPlayer.Character.Humanoid |
05 | local healthbar = script.Parent.remaining |
06 | function checkcolor(health,maxhealth) |
07 | print ( "calculating color" ) |
08 | if (health > (maxhealth/ 3 )* 2.5 ) then |
09 | print ( "setting color to green" ) |
10 | healthbar.BackgroundColor 3 = Color 3. new( 0 , 255 , 119 ) |
12 | if (health < = (maxhealth/ 3 )* 2.5 ) then |
13 | print ( "setting color to yellow" ) |
14 | healthbar.BackgroundColor 3 = Color 3. new( 255 , 247 , 14 ) |
16 | if (health < = (maxhealth/ 3 )* 2 ) then |
17 | print ( "setting color to orange" ) |
18 | healthbar.BackgroundColor 3 = Color 3. new( 255 , 144 , 8 ) |
20 | if (health < = (maxhealth/ 3 )) then |
21 | print ( "setting color to red" ) |
22 | healthbar.BackgroundColor 3 = Color 3. new( 255 , 0 , 0 ) |
25 | function HealthChanged() |
26 | local maxhealth = humanoid.MaxHealth |
27 | local health = humanoid.Health |
28 | script.Parent.Parent.healthoutof.Text = health.. "/" ..maxhealth |
29 | script.Parent.Parent.healthoutof.healthoutof.Text = health.. "/" ..maxhealth |
30 | checkcolor(health,maxhealth) |
31 | healthbar:TweenSize(UDim 2. new(health/maxhealth, 0 , 1 , 0 ), "In" , "Linear" , 0.1 ) |
35 | humanoid.HealthChanged:connect(HealthChanged) |
So if I do something like setting the health to 80, it should set the color to orange, but instead it sets the color to Color3.new(65025, 62985, 3570)