DevProduct Argument

How would I fire a 3rd argument?

I’m trying to make it so if the player buys the product, if completed, it gets called and a textbox’s text is retrieved and can be used.

I tried to do a remotefunction method but I don’t think its efficient

I want to acquire the “msg” as if it was a remotevent firing a data to the server, but the devproductpromptpurchase doesn’t accept a 3rd argument

1 Like
marketplaceservice.PromptGamePassPurchaseComplete:Connect(function(player, id, success)
     if id == --gamepass id and success == true then
         --ur stuff here
     end
end)```
1 Like

How would I fire the data of the textbox’s text though?

through a remote event? i cant understand xd

My issue is that the PromptProductPurchase can’t fire a 3rd argument, so how would I fire the msg (textbox’s text) when a player completes a purchase, then retrieve it. (In my second image) I tried using a remotefunction method but gives out a receipt error