There's no setting to get the recommendation games, else you make them all INSIDE a table.
Like this but... I hope it helps:
1 | 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...
01 | local TeleportService = game:GetService( "TeleportService" ) |
02 | local Place = (PLACE ID HERE) |
05 | script.Parent.Touched:connect( function (hit) |
06 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
08 | TeleportService:Teleport(Place, player) |
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)