|
| 27 Nov 2011 08:59 AM |
Hello. Does anyone know what the command is to kill all the players in a place? This was a guess: Players.FindFirstChild.Humanoid.Health = 0 It didn't work but I wondered if anyone could help me? |
|
|
| Report Abuse |
|
|
NeonBlox
|
  |
| Joined: 19 Oct 2008 |
| Total Posts: 1462 |
|
|
| 27 Nov 2011 09:01 AM |
for i,v in pairs(game.Players.GetPlayers) v.Character.Head:remove() --I think that how you index it... end |
|
|
| Report Abuse |
|
|
|
| 27 Nov 2011 09:02 AM |
| Thanks, I shall check this |
|
|
| Report Abuse |
|
|
|
| 27 Nov 2011 09:08 AM |
for i,v in pairs(game.Players:GetChildren()) do v.Character.Head:remove() end |
|
|
| Report Abuse |
|
|