Teleport System

I made a GUI to teleport me to another game, but the game keeps appearing in “Continue”. How do I make it so that when they get teleported in does not show in “Continue”.

2 Likes

Uh, you need to elaborate. Screenshots of the issue would help.

TeleportService does not work in studio, you need to publish and test in the actual game

2 Likes
                              PART SCRIPT

local TeleportService = game:GetService("TeleportService")
local Place = 965894514--place id

script.Parent.Touched:connect(function(hit)
       local player = game.Players:GetPlayerFromCharacter(hit.Parent)
       if player then
               TeleportService:Teleport(Place, player)

  end

end)
                               GUI SCRIPT

local TeleportService = game:GetService("TeleportService")
local Place = 965894514
local player = game.Players.LocalPlayer

script.Parent.MouseButton1Click:connect(function()
        TeleportService:Teleport(Place, player)
end)

try this

1 Like

Ill try it, Thanks for the script!

1 Like

Part Script (place in part):

local TeleportService = game:GetService("TeleportService")
local placeId = 00000000

script.Parent.Touched:Connect(function(hit)
    local player = game.Players:GetPlayerFromCharacter(hit.Parent)
    if player then
        TeleportService:Teleport(placeId, player)
    end
end)

UI Button Script (place In TextButton):

local TeleportService = game:GetService("TeleportService")
local placeId = 00000000

script.Parent.MouseButton1Click:Connect(function()
    TeleportService:Teleport(placeId)
end)
2 Likes

The game ID I inserted popped up in the Continue Page on my alt and my main account for some reason.

You also cannot Teleport in Roblox Studio.

1 Like

for that u need to make a place in side the game

i will tell u how later kinda busy lol

You must publish your game, then the teleport system will work. If the teleport system isn’t working, first make sure the game you’re teleporting to is public. You can also open up the tab (where you see invite friends, volume, etc.) to check for errors. Just go inside the developer console, which is the same thing as output – basically.

no he is saying that he can see the place he got teleported in his home page.
he dont want it to show on the home page

1 Like

Click on the Small arrow

Click on Customize

Now search Asset

Now click on Asset Manager and click add

Now Press Ok

Now click Asset Manager on the Top bar

Now click Places

Now right click

Now click Add new place

If you dont know how asset manger looks like
explorer

Hope this helps

1 Like

Thanks a lot! Ill try it out for my game.

1 Like

Np
ohh and to edit just double click on that place and a new studio window will pop