Wearde... So at first, I got an error I believe I fixed it. Please help me fix this script:
Also the error its giveing me is: ServerScriptService.BuyCash.1:26: unexpected symbol near '?'
01 | -- setup local variables |
02 | local MarketplaceService = Game:GetService( "MarketplaceService" ) |
03 | local productId = 236341078 |
04 |
05 |
06 |
07 | -- define function that will be called when purchase finished |
08 | MarketplaceService.ProcessReceipt = function (receiptInfo) |
09 |
10 | -- find the player based on the PlayerId in receiptInfo |
11 | for i, player in ipairs (game.Players:GetChildren()) do |
12 | if player.userId = = receiptInfo.PlayerId then |
13 |
14 |
15 | -- check which product was purchased |
Also if you're going to fix it do not give me a link to the Roblox wiki or something please give me the script or tell me why this is happening and help me fix it..
I found what's causing the problem. On line 8 it says (in your code)
MarketplaceService.ProcessReceipt = function(receiptInfo)
The equal symbol ("=") never is in the start of a function
. Fix that line to this:
MarketplaceService.ProcessReceipt:connect(function(receiptInfo)
Read the link below about functions: (I know you sad no Wiki links but it's gonna help you)
~Chez_Guy, Dev.