I am currently working on my game, This is not an asking question. I just want a forum about what I want to do. I want to get the recommended games on ROBLOX for my game portal and press a button and it randomizes a recommended game!
There's no setting to get the recommendation games, else you make them all INSIDE a table.
Like this but... I hope it helps:
RecommendGames = { Jailbreak, Meepcity, Adopt me, Natural Disaster Survival, Murder Mystery 2, Royale High, Welcome to Bloxburg, Ro-Ghoul, Piggy, Arsenal, Mad City, Bubble Gum Simulator, Phantom Forces, A Bizarre Day, Ninja Legends, Flee The Facility, Tower of Hell, Build a Boat for Treasure, Work in a Pizza Place}
And yeah, those are the recommended games, but there's no option to get the recommended games.
So yeah, after those, I also hope there's an option to get recommendation games too... Lol XD
Also note: If you wanted to make the thing clickable, you can split those all to make them warp to the game, firstly, you need to get the game ID, and enter this warp script...
local TeleportService = game:GetService("TeleportService") local Place = (PLACE ID HERE) script.Parent.Touched:connect(function(hit) local player = game.Players:GetPlayerFromCharacter(hit.Parent) if player then TeleportService:Teleport(Place, player) end end)
Put the game ID into the {PLACE ID HERE} and there you go :D
Also note this must put into a GuiButton, or ImageButton or else it not working.
(Sorry for bad grammars lol)