Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why is this basic TeleportService script not working?

Asked by 5 years ago

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.

1local TS = game:GetService("TeleportService")
2local Players = game:GetService("Players")
3 
4local code = TS:ReserveServer(4456038439) -- Returns a code
5local players = Players:GetPlayers() -- Get a list of all players
6 
7TS:TeleportToPrivateServer(4456038439,code,players) -- Actually teleport the players

2 answers

Log in to vote
1
Answered by 5 years ago
01local TeleportService = game:GetService("TeleportService")
02local gameID = 00000000 -- put the second game's game ID here.
03 
04function onTouched(hit)
05    local player = game.Players:GetPlayerFromCharacter(hit.Parent)
06    if player then
07        TeleportService:Teleport(gameID, player)
08    end
09end
10 
11script.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

0
Thanks, modified it a bit to use TeleportService:TeleportToPrivateServer and discovered that to do that the other game requires to be a place in the game that you were teleported from; thanks for the code by the way, easy to modify off of. proqrammed 285 — 5y
0
np RobloxGameingStudios 145 — 5y
Ad
Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

use this if your teleporting every player. the answer above only works when touching a part.

01local TeleportService = game:GetService("TeleportService")
02local Players = game:GetService("Players")
03 
04local gameID = 0 -- gameid here
05local code = TeleportService:ReserveServer(gameID)
06 
07for _,players in pairs(Players:GetPlayers()) do
08     if players:IsA("Player") then
09        TeleportService:Teleport(gameID,code,players)
10     end
11end
0
Thanks, this works too! proqrammed 285 — 5y
0
:( i wasnt accepted ZorbaTheGreatGreek 59 — 5y
0
I really dont mean to beg, but can u consider taking a look at my issue if its not too much of a hassle (litreally no errors but it dont work) https://scriptinghelpers.org/questions/91802/stat-will-not-add-onto-a-players-speed-along-with-another-number-and-my-coin-wont-collect-properly RobloxGameingStudios 145 — 5y

Answer this question