How to make a dev product that multiplies the current money?
Asked by
4 years ago Edited 4 years ago
1 | local MPService = game:GetService( "MarketplaceService" ) |
3 | MPService.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 |
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