ok so this is a pointless script i just made it to test selecting a random player but it only kills the same player over again can someone help?
h = script.Parent
Players = game.Players:GetChildren()
ranPlayer = Players[math.random(1,#Players)]
while true do
for i = 10, 1, -1 do
h.Text = "Random Player will be killed in " ..i .." Seconds"
Wait(1)
end
Wait(1)
ranPlayer.Character.Torso:Remove()
end |