I have created a catalog using AvatarService, however when trying to purchase a limited item through the game I get this error. When I test in studio i don’t get the error, instead I get Item Purchased added to inventory.
< --The Error
I have allowed all the required services in the games security. I bought the same Item in another players catalog game and it worked perfectly. Does anyone know why my error is?
local id = item.Id
ImageButton.MouseButton1Up:Connect(function()
local val2send = id
--promptItemPurchaseEvent:FireServer(val2send)
mps:PromptPurchase(player, id)
end)
I have the asset Id there, tried it through server that’s why there was an event. Now trying through client. Still same issue as before.