How to make the custom health gui decreases when the player health decreases too?
01 | game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false ) |
02 | local player = game.Players.LocalPlayer |
03 | repeat wait() until player.Character |
04 | local Humanoid = player.Character:WaitForChild( "Humanoid" ) |
05 | local HealthMath = Humanoid.Health / (Humanoid.MaxHealth) |
07 | script.Parent:TweenSize(UDim 2. new(HealthMath, 0 , 1 , 0 ), "Out" , "Sine" , . 5 ) |
09 | Humanoid.HealthChanged:connect( function () |
10 | local HealthMath = Humanoid.Health / (Humanoid.MaxHealth) |
11 | script.Parent:TweenSize(UDim 2. new(HealthMath, 0 , 1 , 0 ), "Out" , "Sine" , . 5 ) |
So when I take a slightly damage .. The gui overlay do decreases but when it is instant damage the gui overlay just stuck at the previous health. For example , current health now is 100 and took 50 damage then the gui overlay decreases to 50 but when it take sudden/instant death for example by a rocket or explosion current health now 0 but the gui still showing 50.