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

How to make a dev product that multiplies the current money?

Asked by 4 years ago
Edited 4 years ago
1local MPService = game:GetService("MarketplaceService")
2 
3MPService.ProcessReceipt = function(purchasInfo)
4    local plr = game:GetService("Players"):GetPlayerByUserId(purchasInfo.PlayerId)
5    if purchasInfo.ProductId == 989677509 then
6        plr.leaderstats.Money.Value = plr.leaderstats.Money.Value * 2
7    end
8end

this is what I have, but when you buy the product a second time, the money multiplies by 4, 8, 16, and so on. How could you fix this?

Edit: It also seems to be printing a value twice, four times, and eight times, depending on how many times you've bought product

Edit 2: this multiplication issue seems to only persist with a dev product

1 answer

Log in to vote
1
Answered by 4 years ago
01local MPService = game:GetService("MarketplaceService")
02local origcash = nil
03 
04MPService.ProcessReceipt = function(purchaseInfo)
05    local plr = game:GetService("Players"):GetPlayerByUserId(purchaseInfo.PlayerId)
06    if purchaseInfo.ProductId == 989677509 then
07        origcash = plr.leaderstats.Money.Value
08        plr.leaderstats.Money.Value = plr.leaderstats.Money.Value + origcash
09        wait(.4)
10        origcash = nil
11    end
12    return Enum.ProductPurchaseDecision.PurchaseGranted
13end

That Should Work. Also Don't Use *2 Because If The Game Lags Then The Player Will Gets Tons Of Cash.

0
Ah, I didn't consider lag. Thanks for this! DarkDanny04 407 — 4y
0
No Problem! Harry_TheKing1 325 — 4y
Ad

Answer this question