You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
I would want to fit this health bar into my custom gui.
What is the issue? Include screenshots / videos if possible!
The health bar is sticking out.
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
Yeah I did, but none of them were related to this issue.
Using imagelabel-ed healthbars isnt my style and just by thinking about it I know it wont work.
Im new to the devforum, so feel free to call out any mistakes in my post!
How do I fill in the empty spaces? But if I do fill in the empty spaces, the health bar wouldnt look so nice in game. As an example, like the player has 50% health, theres the thing I used to fill in the spaces. The health bar is half but theres that small chunk left at the far right end.
for the extra images covering the white spaces why not do a script saying something like
game.Players.PlayerAdded:Connect(function(plr)
if plr.Humanoid.Health == then
—-additional images covering white spaces name here.Visible = false
end
end)
for the “ “ after saying ==, you should put whatever the health would be in which the additional images would still show.
In other words, whenever the additional images would show, for instance at like 95% health the placeholders would show, so you would put 95 in the space.