Process Receipt not Firing

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve?
    For Process Receipt to actually fire, then launch a GUI on all clients once it’s fired

  2. What is the issue?
    It seems Process Receipt isn’t actually firing, putting a print statement doesn’t run it. (Script)


    This is what prompts the purchase, there’s two options. (LocalScript)
    image

  3. The problem in action.

ProcessReceipt is a callback, not an event. So you can’t use :Connect as with normal events.

Declare it like so:

marketplaceService.ProcessReceipt = function(receiptInfo)
print'blah'
end
2 Likes