Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

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:

01game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.Health,false)
02local player = game.Players.LocalPlayer
03local character = game.Workspace:WaitForChild(player.Name)
04local humanoid = game.Players.LocalPlayer.Character.Humanoid
05local healthbar = script.Parent.remaining
06function checkcolor(health,maxhealth)
07    print("calculating color")
08    if(health > (maxhealth/3)*2.5) then
09        print("setting color to green")
10        healthbar.BackgroundColor3 = Color3.new(0, 255, 119)
11        end
12    if (health <= (maxhealth/3)*2.5) then
13        print("setting color to yellow")
14        healthbar.BackgroundColor3 = Color3.new(255, 247, 14)
15        end
View all 35 lines...

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)

1 answer

Log in to vote
0
Answered by
8391ice 91
8 years ago

The reason it does this is because of the Color3 values. I don't know why, but the Color3 values have to be from 0 to 1, with 0 being 0, and 1 being 255. So, the simple answer is to divide each value in the Color3 value by 255.

01game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.Health,false)
02local player = game.Players.LocalPlayer
03local character = game.Workspace:WaitForChild(player.Name)
04local humanoid = game.Players.LocalPlayer.Character.Humanoid
05local healthbar = script.Parent.remaining
06function checkcolor(health,maxhealth)
07    print("calculating color")
08    if(health > (maxhealth/3)*2.5) then
09        print("setting color to green")
10        healthbar.BackgroundColor3 = Color3.new(0, 1, .46)
11        end
12    if (health <= (maxhealth/3)*2.5) then
13        print("setting color to yellow")
14        healthbar.BackgroundColor3 = Color3.new(1, .97, .05)
15        end
View all 35 lines...

Let me know if anything else still goes wrong.

0
Alternatively you can use the new Color3 function Color3.fromRGB where you can have whole numbers. M39a9am3R 3210 — 8y
Ad

Answer this question