I have been reading up on reserved servers and I have been wondering if I could make 2 players join the same reserved server of a place in an experience so its just like a privite server but for a place
1 Like
The feature is made for this use-case. If you are new to scripting, this may be a tricky task, but you should try your best before asking for support. You can review the api documentation here: TeleportService | Documentation - Roblox Creator Hub
2 Likes
Ive been reading it and Im trying to make 2 players join the same reserved server of a place in an experience and Im not seeing anything to make a reserved server of a place
1 Like
local TeleportService = game:GetService('TeleportService')
local PlaceId = 000000 -- The PlaceId of the game you want to reserve a server in.
local Code = TeleportService:ReserveServer(PlaceId)
local PlayersTable = {} -- The table containing the players you want to teleport.
TeleportService:TeleportToPrivateServer(PlaceId, Code, PlayersTable)
Just make sure to have the PlayersTable actually have with the 2 players you want to teleport to the other game.
2 Likes