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

How do i make an unlisted game teleporter?

Asked by 5 years ago

So I'm trying to make a game teleporter that teleports you to another game, but when you look at your "recently played" section on your home page, it won't show the game you played. It's really puzzling me.

1
Difference between places and games, a game contains places, if you teleport from one 'place' to another 'place' which is owned by a game, then it will appear as one place that you have recently played from that 'game'. wall6 1 — 5y

1 answer

Log in to vote
0
Answered by 3 years ago

Alright so first what you want to do is go to develop and go to the start game that you want the teleport to be in. After that click the gear icon on the right side and click "Configure Game" It should be at the top. After that click Places and click Add Place under Other Places. I will first show you a simple gui script for teleportation to this game you made in other places. This will make it non visible in recently played because it is technically inside the same universe. Make a screengui in starter gui and make a text button inside of it, put a local script inside the text button and use this script

script.Parent.MouseButton1Down:Connect(function()
      game:GetService("TeleportService"):Teleport(yourgameidhere)
end)

After that to get your game id to your second place inside your start place go to "View" on the top of roblox studio and click game explorer, it should be right next to the big properties button. After that look inside Game Explorer for Places. Open places and right click your second game inside your starter game. Click "Copy ID to clipboard " and then paste the id in the "yourgameidhere" part of the script. Make sure that its inside the quotations by itself. I hope this works, tell me if you have any questions or have any problems.

Ad

Answer this question