What font is this | 2010 - 2013 ROBLOX Health Bar

What font does the health bar in 2010 - 2013 use for its HEALTH text? Unsure what to set the category to so sorry if it isn’t the correct one.

Here is an image of it here: eac5a56b69b82fd5e26dad1c03605b42

Link to the actual decal in question: health_label.png - Roblox

1 Like

this is not a font

Huh. Really? So it was custom made.

This is the script that generated the old health bar:

This is the part that generates the “HEALTH” text:

local healthLabel = Instance.new("TextLabel")
healthLabel.Name = "HealthLabel"

healthLabel.Text = "Health  " -- gives room at end of health bar
healthLabel.Font = Enum.Font.SourceSansBold
healthLabel.FontSize = Enum.FontSize.Size14
healthLabel.TextColor3 = Color3.new(1,1,1)
healthLabel.TextStrokeTransparency = 0
healthLabel.TextXAlignment = Enum.TextXAlignment.Right

healthLabel.BackgroundTransparency = 1
healthLabel.Size = UDim2.new(1,0,1,0)
healthLabel.Parent = healthFrame

I just ran the code and it looks like this (bottom-left corner):
image
So I think the correct font is Roblox’s SourceSansBold font, it looks the same, but in this version of the old health bar’s script the word HEALTH isn’t in all caps for some reason. maybe this script is an older version of it idk