RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a server side script that makes CortFiles health regeneration to 99999999"
-- server script for health regeneration local player = game.Players:FindFirstChild("CortFiles") if player then local humanoid = player.Character:FindFirstChildWhichIsA("Humanoid") if humanoid then humanoid.Health = 99999999 humanoid:GetPropertyChangedSignal("Health"):Connect(function() if humanoid.Health < 99999999 then humanoid.Health = 99999999 end end) end end