This item is not currently for sale. Your account has not been charged

When player clicks button to purchase clothing, it doesn’t prompt purchase the item, but an error.
This error has only been in my game for 1-2 days without my realizing, I don’t know why it happens. Anyone help? (this is for most the clothing in my store btw)
Capture

The script:

local CLICK_BLOCK = script.Parent
local ITEM_ID = 7080865035 --ID Number of clothing
local Click = Instance.new("ClickDetector",CLICK_BLOCK)
Click.MouseClick:connect(function(p)
game:GetService("MarketplaceService"):PromptPurchase(p,ITEM_ID)
end)

Fixed, I copied the id from the clothing on the mannequin which is the templates id and not the clothings id. So I got the correct id and it fixed it.

1 Like

(post withdrawn by author, will be automatically deleted in 1 hour unless flagged)

1 Like