historical/ROBLOX.git/drivingcrazy

11 lines
236 B
Text
Raw Normal View History

2024-01-16 11:20:27 -06:00
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