Stamina Bar Assistance

image

Is anyone able to create a similar stamina bar to “Mortem Metallum” or an exact replica?

1 Like

What part are you talking about, making the UI fill, or just making the UI

Making the UI as well as programming it to behave similar to MM or as stated in the previous post an exact replica.

That…Defeat the whole point of #help-and-feedback:scripting-support

it isn’t so hard first make two frame one out ( black one ) and one side (cyan one ) and on cyan one put this script :

while wait(1) do

local Maxstamina =game.Players.LocalPlayer.leaderstats.Maxstamina .Value --put the max stamina store here

local Stamina = game.Players.LocalPlayer.leaderstats.stamina.Value--put the stamina store here

script.Parent.Size = UDim2.new(Stamina/Maxstamina , 0, 1, 0)

end