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: