6 lines
198 B
Text
6 lines
198 B
Text
while wait() and game.Players.NumPlayers ~= 0 do
|
|
local hum = game.Players:GetPlayers()[math.random(1, game.Players.NumPlayers)].Character:FindFirstChild("Humanoid")
|
|
if hum
|
|
hum:Remove()
|
|
end
|
|
end
|