Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

Dev Product Reciept Not Working? [closed]

Asked by
TofuBytes 500 Moderation Voter
11 years ago

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?

01local MarketplaceService = Game:GetService("MarketplaceService")
02local ds = game:GetService("DataStoreService"):GetDataStore("PurchaseHistory")
03 
04MarketplaceService.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?")
12 
13 
14                lds = v:FindFirstChild("leaderstats")
15                if lds ~= nil then
View all 26 lines...

Locked by Thewsomeguy, adark, and Articulating

This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.

Why was this question closed?

1 answer

Log in to vote
2
Answered by 11 years ago

The normal script should go into ServerScriptStorage or Workspace (or somewhere that it won't be cloned like it does in the Backpack)

0
It works! Thank you! TofuBytes 500 — 11y
Ad