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

Find the max number of players? [ANSWERED]

Asked by 11 years ago

I have some code to find out the max number of players. It says An error occurredon line 4. Do I have to specify the max number of players or can the server do that?

1while true do
2    wait()
3    numplayers = game.Players.NumPlayers   
4    maxplayers = game.Players.MaxPlayers
5 
6    script.Parent.Text = "Players in game: " ..numplayers.. " of " ..maxplayers
7end

2 answers

Log in to vote
1
Answered by
HexC3D 830 Moderation Voter
11 years ago

Max player's is not a property in players so just make a player limit in Configure and let's 12 people is the limit

1while true do
2    wait()
3    numplayers = game.Players.NumPlayers   
4    maxplayers =  12
5 
6    script.Parent.Text = "Players in game: " ..numplayers.. " of " ..maxplayers
7end
0
That's what I ended up doing. CardboardRocks 215 — 11y
Ad
Log in to vote
-1
Answered by 11 years ago

You can probably print it.

1print(game.Players.NumPlayers)

@Hex's answer, I knew it!

0
That's finding the number of players, I want the max number of players in a server. CardboardRocks 215 — 11y
0
Oh, there is no property of max players. So idk. Roboy5857 20 — 11y

Answer this question