i wanted to make a zombie game like BOII but if i use the normal teleport service players can join mid round AND that would be bad i read some articles about it but i still dont quit understand can someone help me?
In your case you would probably use a different place other than the game that teleports the players. If you didn't know that place should be apart of the game. In case you don't know what I mean then read this article: https://developer.roblox.com/en-us/articles/games-and-places
Example script:
local TS = game:GetService("TeleportService") local Players = game:GetService("Players") --You could just use a different table which has only select players in it but this is only an example. local PlaceId = game.PlaceId--The place id of the place you want to teleport players to. local code = TS:ReserveServer(PlaceId) -- This is the code you would use to teleport to the server. Here it reserves a server on the same game not a different place. TS:TeleportToPrivateServer(PlaceId,code,players) --TS:TeleportToPrivateServer(ID of place with reserved server,code which is used to find that server,array of players that should be teleported to the server)