How to Change Max Players on Your Minecraft Bedrock Server
Set the player limit on your Bedrock dedicated server via Startup, server.properties, or the allowlist bypass for admins.
The default Bedrock Dedicated Server allows 10 simultaneous players. You can raise or lower this depending on your server plan.
Change the Player Limit
Open Startup
In the XGamingServer Panel, click Startup in the sidebar.
Change the value
Find the Max Players variable and set it to your desired number.
Restart
Go to Console and restart the server for the change to take effect.
Open the file
Click Files in the sidebar and open server.properties.
Save and restart
Click Save Content and restart from Console.
Letting Admins Join a Full Server
If your server is full, admins can still join if they have ignoresPlayerLimit set to true in allowlist.json:
[
{
"ignoresPlayerLimit": true,
"name": "AdminPlayer",
"xuid": "2535416790845590"
}
]This requires allow-list=true in server.properties. See the whitelist guide for details.
Performance Considerations
More players means more chunks loaded, more entities tracked, and more network traffic. If you notice lag at higher player counts:
- Lower
view-distance(try10–12instead of32) - Lower
tick-distanceto4 - Use
compression-algorithm=snappyfor faster network compression
See the server.properties guide for full performance tuning options.
Related Guides
How is this guide?
How to Give OP Permissions on Your Minecraft Bedrock Server
Grant operator access on your Minecraft Bedrock server using the console, permissions.json, or the default permission level setting.
How to Reset the Nether on Your Minecraft Bedrock Server
Understand why Bedrock Edition can't simply delete the Nether folder like Java, and learn the two methods to reset Nether terrain.