local Players = game:GetService("Players").LocalPlayer
repeat wait() until Players.Character
local Humanoid = Players.Character:FindFirstChild("Humanoid")
local Stats = Players:FindFirstChild("Stats") local Health2 = Stats:FindFirstChild("Health")
while wait() do if Humanoid.Health == Humanoid.MaxHealth then --If Max health then not only adding stats also setting health to max Humanoid.MaxHealth = 250 + (Health2.Value * 50) Humanoid.Health = Humanoid.MaxHealth else Humanoid.MaxHealth = 250 + (Health2.Value * 50) --if not max then only adding stats end end