Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Game isnt choosing a random player?

Asked by
CodeWon 181
4 years ago

So I was making a script to choose a random player, but it wasn't working.

1while 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
8end
0
You had the right intentions, but you executed it incorrectly. You want to index a random position in the array determined by ':GetPlayers()': `local RandomPlayer = Players[math.random(1, #Players)]'. Ziffixture 6913 — 4y

1 answer

Log in to vote
0
Answered by
TGazza 1336 Moderation Voter
4 years ago
Edited 4 years ago

Almost there!, Try this:

1while 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
9end
Ad

Answer this question