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.
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.