Dev Product Reciept Not Working? [closed]
I put a regular script into the Starterpack. (Unsure if this is the problem.) I'm trying to send leaderstats NumberValue "Coins". Purchasing works, but sending the "Coins" won't. Any help on how to fix this?
01 | local MarketplaceService = Game:GetService( "MarketplaceService" ) |
02 | local ds = game:GetService( "DataStoreService" ):GetDataStore( "PurchaseHistory" ) |
04 | MarketplaceService.ProcessReceipt = function (receiptInfo) |
05 | print ( "Testing Receipt Loaded" ) |
06 | local playerProductKey = "player_" .. receiptInfo.PlayerId .. "_product_" .. receiptInfo.ProductId |
07 | local numberBought = ds:IncrementAsync(playerProductKey, 1 ) |
08 | for i,v in pairs (game.Players:GetChildren()) do |
09 | if v.userId = = receiptInfo.PlayerId then |
10 | if receiptInfo.ProductId = = 19918045 then |
11 | print ( "Did this succeed?" ) |
14 | lds = v:FindFirstChild( "leaderstats" ) |
16 | cs = lds:FindFirstChild( "Coins" ) |
18 | cs.Value = cs.Value + 100 |
25 | return Enum.ProductPurchaseDecision.PurchaseGranted |