This is a Server Matchmaking plugin that uses Memory Store.
Game Servers add and remove themselves from the Memory Store as they spin up and shutdown.
Lobby Servers teleport people to the available servers.
-
After installing the plugin, select the server type. (Game or Lobby Server)
-
Select the Version you would like to install. (Github Version)
-
Click update. When update is clicked the latest code is pulled from Github.
In s ServerScriptService script require the module.
local MSSP = require(script.Parent["MSSP-Lobby-Module"])Then, in your onPlayerAdded function, load the server admin gui for your admins.
local ServerAdminGui = MSSP.LoadGui(player)In an Event, add the player to a server.
MSSP.TeleportToFirstAvailableServer(player, PlaceId)In s ServerScriptService script require the module.
local MSSP = require(script.Parent["MSSP-Game-Module"])Configure the Module
MSSP.Configure(ServerName, ServerMaxPlayers, PlaceId)Then, in your onPlayerAdded function add the player to the server.
MSSP.AddPlayerToServer(player, #Players:GetChildren())Then in your onPlayerRemoved function remove the player from the server
MSSP.RemovePlayerFromServer(player)-
Server Admin Gui on Lobby Servers ✓
-
Game Server Module Creation ✓
-
Populating logic for Game Servers
-
Testing / Bug Fixes
-
Documentation
If you would like to join the Team email us at [email protected]



