Assets have been accepted by Roblox but they refuse to load in GUIs

I wasn’t sure to put this in design support or scripting support, but since it involves code I’m putting it here.

So, my assets have been accepted on the Roblox page, but when I use MarketplaceService to load in the assets, it doesn’t load.

I’m not sure if its an issue with my script, but I’m guessing not because everything else works just fine.

These pictures have been uploaded for multiple weeks now.

local function GetInfo2(Id)
		local market = game:GetService("MarketplaceService")
		local item = market:GetProductInfo(Id, Enum.InfoType.GamePass)
		return item
	end	
	
	for i, v in pairs(Gamepasses) do
		local info = GetInfo2(v["GamepassId"])
		local shop = script.ShopItem:Clone()
		shop.Icon.Image = "rbxassetid://"..info.IconImageAssetId
		shop.Title.Text = info["Name"]
		shop.Parent = script.Parent.ShopGUI.Items.GamepassContent
		shop.MouseButton1Click:Connect(function()
			SelectedItemType = "Gamepass"
			SelectedItem = i
			ShopGui.Information.Icon.ImageLabel.Image = "rbxassetid://" .. info.IconImageAssetId
			ShopGui.Information.Icon.Title.Text = info.Name
			ShopGui.Information.Desc.Text = info.Description
			ShopGui.Information.Icon.ImageLabel.Prices.Currency1.Cost.Text = "R$ " .. info.PriceInRobux
		end)
	end	

In game:

Page:

1 Like

Getting any errors like this thread? May still be a bug.

I haven’t gotten any errors at all. I’m hoping that this is a glitch because I spent a fortune on those icons.

http://api.roblox.com/marketplace/game-pass-product-info?gamePassId=4497433

Looks like IconImageAssetId isn’t set (to a useful value) for gamepasses.

This also happens with a few of my product images, three of them load and the rest are just blank.

Code is the same by the way.
image