Hello all,
I’m a little confused about the difference between place max players and explorer max players/preferred players count.
My assumption is that these 2 should be the same, but it isn’t. Here’s the screenshot.
The first image shows that place max is 50, 10, 10.
The second image shows that max/preferred players is at 30.
Is it always set at 30? What does this actually affect? I was thinking of displaying max players in a lobby in a form of text. Rather than hard-coding the value.
-- Sample of finding player count
local Players = game:GetService("Players")
local playerCount = #Players:GetPlayers()
Players.PlayerAdded:Connect(function(player)
playerCount += 1
lobbyCountText.Text = playerCount.."/"..Players.MaxPlayers
end)
But using Players.MaxPlayers would show 30 instead of 10. Any insights would be appreciated!