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

Does anyone know how to get ROBLOX's recommended games for a script?

Asked by
Lakodex 711 Moderation Voter
4 years ago
Edited 4 years ago

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!

3
I Dont get it.....why did you even bother to tell us this? No Script, and your wording is bad. Dont know what your trying to say dude. (Also This is not a Request Site!) Tizzel40 243 — 4y
0
Just put some Recommended game on roblox (manually) right now then ....done Nguyenlegiahung 1091 — 4y
1
He wants to get all games within the front page recommended section, create a list of PlaceIds and teleport accordingly. Unfortunately, you cannot do this unless you manually grab every ID and update it from time-to-time. You could only achieve this through Http requests, that of which ROBLOX’s built-in service does not allow you to make to their own website. Ziffixture 6913 — 4y

1 answer

Log in to vote
1
Answered by
Xapelize 2658 Moderation Voter Community Moderator
4 years ago

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)

Ad

Answer this question