So I created this simple donate button (in a local script) where when you touch the gui it prompts you to donate some robux:
local id = 000000000 -- whatever the id is
script.Parent.MouseButton1Click:Connect(function()
game:GetService("MarketplaceService"):PromptProductPurchase(game.Players.LocalPlayer, id)
end)
But I keep getting this in the output:
12:33:38.979 - Image "https://assetgame.roblox.com/thumbs/asset.ashx?assetid=0&x=100&y=100&format=png" failed to load in "CoreGui.PurchasePromptApp.PurchasePromptUI.PromptContents.PromptBody.ProductInfo.ItemPreviewImage.ItemPreviewImageContainer.ItemImage.Image": Failed to resolve texture format | 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................................................................
Am I doing something wrong?