How do I teleport queue to a reserved server?
I have a game and a queue script. I want the script to teleport players into one of the games that is part of the start place, but I want everyone who's in the same queue to go to the same server. I have the basic teleport code but I'm not sure how to reserve a server for a separate game. I have seen it in games like "Camping" and, "House Party" so I know that it's possible.
Here is the code
1 | if player_count = = 4 then |
3 | local queue 1 = game.ReplicatedStorage.queue 1 :GetChildren() |
4 | local TS = game:GetService( "TeleportService" ) |
5 | for i,v in pairs (queue 1 ) do |
6 | local plr = game.Players:WaitForChild(v.Name) |
8 | TS:Teleport( 3350448651 ,plr) |