What i want to achieve, is i want to get the gameIcon and not the gameThumbnail. But i don’t know how i would get the gameIcon, i know have this:
local gameID = script.gameID.Value
local TeleportService = game:GetService("TeleportService")
local MarketplaceService = game:GetService("MarketplaceService")
local gameTitle = script.Parent.gameTitle
local gameImage = script.Parent.gameImage
local gameId = script.Parent.gameId
local joinGame = script.Parent.joinGame
gameTitle.Text = MarketplaceService:GetProductInfo(gameID).Name
gameId.Text = gameID
--gameImage.Image = "rbxthumb://type=Asset&id="..gameID.."&w=150&h=150"
gameImage.Image = "http://www.roblox.com/Icons/Asset.ashx?Width=768&Height=432&AssetID="..gameID
joinGame.MouseButton1Click:Connect(function()
TeleportService:Teleport(gameID, game.Players.LocalPlayer)
end)