Developer Product Error

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

That is not actually your code causing the script, it is just Roblox’s core script failing.

Oh. That makes more sense now, thanks! :smile: