So I was making a script to choose a random player, but it wasn't working.
1 | while wait( 120 ) do |
2 | if game.Players:GetChildren() > 1 then |
3 | local randomPlayer = game.Players:GetPlayers() |
4 | [ math.random( 2 , #game.Players:GetPlayers()) ] |
5 |
6 | print (randomPlayer.Name) |
7 | end |
8 | end |
Almost there!, Try this:
1 | while wait( 10 ) do |
2 | if #game.Players:GetChildren() > 1 then |
3 | local Players = game.Players:GetPlayers() |
4 |
5 | randomPlayer = Players [ math.random( 1 , #Players ) ] |
6 |
7 | print (randomPlayer.Name) |
8 | end |
9 | end |