So, in MarketplaceService:GetProudctInfo()
the IconImageAssetId, keeps returning as 0, i know that because when i go to the ImageLabel in my Template, it says rbxassetid://0 and i tried everything even specifying the AssetType in the parameters, but its still not working
for s, item in pairs(assets) do
local info = mps:GetProductInfo(item["id"], Enum.InfoType.Asset)
local template = script.Template:Clone()
template.ProductImage.Image = "rbxassetid://"..info.IconImageAssetId
template.Parent = frame
template.ItemID.Value = info.AssetId
table.insert(_G.buyButtons, template.Buy)
frame.CanvasSize = UDim2.new(0, 0, s/10, 0)
end