historical/ROBLOX.git/kick all

7 lines
198 B
Text
Raw Normal View History

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