Currently, I keep getting spammed with this output error while testing my in-game product. I was wondering if anyone can figure out what this error means.
I’ve tried searching it up hundreds of times but to no luck.
Heres my Developer ProcessReceipt script
MarketService.ProcessReceipt = function(receipt) pcall(function()
local Player = game:GetService("Players"):GetPlayerByUserId(receipt.PlayerId) if Player then
local PlrAmount = Relp:WaitForChild("Remotes").StorageFunc:InvokeClient(Player, ReceiptAmount_M["M "..receipt.ProductId]);
return Enum.ProductPurchaseDecision.PurchaseGranted; end if not Player then return Enum.ProductPurchaseDecision.NotProcessedYet
end end) end