local mps = game:GetService("MarketplaceService")
local gameid = 00000000 --game id here
local info = mps:GetProductInfo(gameid)
if info then
print(info.Name)
end
local mps = game:GetService("MarketplaceService")
local gameid = 00000000 --game id here
local info = mps:GetProductInfo(gameid)
if info then
print(info.Name) --game name
print(info.IconImageAssetId) -- game's icon image ID
end
Have you looked at the link I sent you?
You need to make a GET request using that link, and it should return an encoded json string.
Decoding it using HTTPService will give you a table with the information. It is formatted as shown under it’s respective tab on the site.
This is all coming from what I found in a matter of 3 minutes. ¯\_(ツ)_/¯