I'm using the script below to disable the reset button/dying. How would I also disable the red that appears when damage is taken.
Humanoid = script.Parent.Parent.Character.Humanoid
Humanoid.HealthChanged:connect(function(health)
Humanoid.Health = 100
end)
|