You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
I want to know how camping teleport players în new servers to don’t ca-n to join in a Started match
What is the issue? Include screenshots / videos if possible!
I tryed using createserverasync
Os somethin Like this but don’t work
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I look for soluționa in dev Hub but that don’t helped me
Please who know?
3 Likes
You can’t create new servers, however you can create a private server to teleport them into. You can teleport a group of players by specifying the players you want to teleport.
The documentation for TeleportToPrivateServer has an example on how to use it.
3 Likes
higbeaad
(Layla)
November 29, 2019, 5:38am
#3
It looks like this question has already been solved here:
Spent ~10 minutes making this for you.
How this works is that whenever someone sits down on one of the seats, it starts a countdown if there isn’t one already. If they get off the seat, it cancels the countdown.
At the end of the countdown, it teleports all remaining candidates if there are more than X amount.
If during the countdown everyone gets off the seats, it cancels the countdown and is able to start another countdown.
I have not tested this extensively, but it should work fine
If yo…
2 Likes
mistr88
(mistr88)
November 29, 2019, 5:54am
#4
make private servers and when player need to join, send request using messaging server and server will reply by invite with its access code
1 Like
Ok, but private servers cost robux
IUClDS
(Onii_Chan)
November 29, 2019, 1:26pm
#6
Bruh. TeleportToPrivateServer doesn’t actually make you teleport to a private server. It takes a player (or a group) to another server or something like that.
1 Like
ForbiddenJ
(ForbiddenJ)
November 29, 2019, 1:51pm
#7
You need to implement this in a somewhat strange way.
You first need to reserve a private server for your group of players. Be sure to save the resulting access code for the next command.
Then you need to call this function to get them into that server:
I imagine you could do it similar to this:
TeleportService = game:GetService("TeleportService")
GamePlaceId = 12345
function StartGameServerWithGroup(players)
local accessCode, serverId = TeleportService:ReserveServer(GamePlaceId)
TeleportService:TeleportToPrivateServer(GamePlaceId, accessCode, players)
end
StartGameServerWithGroup({game.Players.pro_developer213})
6 Likes
mistr88
(mistr88)
November 29, 2019, 1:55pm
#8
not, you must find diference between private server and VIP server, VIP server cost robux, but private server is made by lua function, is free, and its owner id is 0, I have matchmaking system based on this, only deference is, that it also filter players by level, …
2 Likes
In that table i need to insert the players? I think yes
2 Likes
BetaTrivus
(BetaTrivus)
October 23, 2020, 2:47am
#11
This is so helpful thank you so much you’re my savior!