Put a Local script in StarterGui or Starterpack then put this in:
local Player = game.Players.LocalPlayer
repeat wait() until Player
local Char = Player.Character
repeat wait() until Char
Char.Humanoid.Changed:connect(function()
if not Char.Humanoid.Health == Char.Humanoid.MaxHealth then
print(1)
end
end |