historical/ROBLOX.git/cray2
2024-01-16 11:20:27 -06:00

10 lines
236 B
Text

while wait(8) do
for i, player in ipairs(game.Players:GetPlayers()) do
if player.Character then
local hum = player.Character:FindFirstChild('Humanoid')
if hum then
hum.Health = hum.Health / 2
end
end
end
end