I have some code to find out the max number of players. It says An error occurred
on line 4. Do I have to specify the max number of players or can the server do that?
1 | while 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 |
7 | end |
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
1 | while true do |
2 | wait() |
3 | numplayers = game.Players.NumPlayers |
4 | maxplayers = 12 |
5 |
6 | script.Parent.Text = "Players in game: " ..numplayers.. " of " ..maxplayers |
7 | end |
You can probably print it.
1 | print (game.Players.NumPlayers) |
@Hex's answer, I knew it!