I started with a script I found on the roblox website on the page for TeleportService:TeleportToPrivateServer, and changed it to my ids. Sorry if this is a basic, mistake, I am new to scripting. The code should teleport the player to a separate game, but it does nothing.
1 | local TS = game:GetService( "TeleportService" ) |
2 | local Players = game:GetService( "Players" ) |
3 |
4 | local code = TS:ReserveServer( 4456038439 ) -- Returns a code |
5 | local players = Players:GetPlayers() -- Get a list of all players |
6 |
7 | TS:TeleportToPrivateServer( 4456038439 ,code,players) -- Actually teleport the players |
01 | local TeleportService = game:GetService( "TeleportService" ) |
02 | local gameID = 00000000 -- put the second game's game ID here. |
03 |
04 | function onTouched(hit) |
05 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
06 | if player then |
07 | TeleportService:Teleport(gameID, player) |
08 | end |
09 | end |
10 |
11 | script.Parent.Touched:connect(onTouched) |
12 | -- This is just a simple teleport that teleports you to another game seprate on roblox, No API's or other vip stuff. |
13 | -- IMPORTANT: You cannot teleport to other games within studio. |
This should work
use this if your teleporting every player. the answer above only works when touching a part.
01 | local TeleportService = game:GetService( "TeleportService" ) |
02 | local Players = game:GetService( "Players" ) |
03 |
04 | local gameID = 0 -- gameid here |
05 | local code = TeleportService:ReserveServer(gameID) |
06 |
07 | for _,players in pairs (Players:GetPlayers()) do |
08 | if players:IsA( "Player" ) then |
09 | TeleportService:Teleport(gameID,code,players) |
10 | end |
11 | end |