How to move a player to another servers ?
I want to the player go in another server but not a private one !
Ask me if my explaination is bad !
You can use TeleportAsync for it with the help of TeleportOptions.
local options = Instance.new(“TeleportOptions”)
options.ServerInstanceId = game.JobId
game:GetService("TeleportService"):TeleportAsync(game.PlaceId, {
-- table of player instances here
}, options)
1 Like
Sorry but i’m lost, I want to the player go on a new server but the same like the other !
Like refresh the server !
Thx you !