Help getting game icon

You will need ProxyService

local ProxyService = require( -- Module Path -- )
local Proxy = ProxyService:New( -- Arguments -- )

local PlaceId = 606849621
local UniverseId = game.HttpService:JSONDecode(Proxy:Get('https://api.roblox.com/universes/get-universe-containing-place?placeid='..PlaceId).body)

local ImageLabel = -- ImageLabel/Button Path --
local Icon = "rbxthumb://type=GameIcon&id="..UniverseId["UniverseId"].."&w=512&h=512"
ImageLabel.Image = Icon
1 Like