Server Party - How it works and integration with other experiences

Server Party
Server party is a game on roblox designed to eliminate the issue of full servers when playing with friends. It does this by allowing players to teleport to a server with their friends in order to ensure that they can all play to together as they will always be taken to the same server.


Is it safe?
Yes, the game is completely safe to use as it uses roblox’s built in teleport features and therefore your account is put at no risk while being teleported to another game.


Requesting a game
In order to request a game to be added, please leave a message about the game what you would like to be added on the group wall or contact a developer with the relevant information and we will try to add it in the future.


Integration with experiences
If you wish to integrate the Server Party system with your game, you can do so using the teleport data that is transported with the players into your game. This data includes the number of players within a party and a list containing the User Id of each player.

Here is an example of what could be sent:

{
	["PlayerCount"] = 3;
	["PlayerIds"] = {
		3;
		4;
		1
	}
}

In order to obtain this data you can use the GetJoinData() function on the client. If you want to learn more about this function, you can see the documentation here.