Number to add to value multiplying?
Asked by
4 years ago Edited 4 years ago
I tried to increase a value in a player's leaderstats by 1,000 every time they purchase a developer product, but it keeps multiplying 1,000 by the number of times the product was purchased. (Example: First time buying I would get 1,000, but next time I would get 2,000 instead of 1,000) I expected the script to add 1,000 every time.
Here is my ProcessReceipt script (located in ServerScriptService):
01 | local MarketplaceService = game:GetService( "MarketplaceService" ) |
02 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
03 | local DataStoreService = game:GetService( "DataStoreService" ) |
04 | local Players = game:GetService( "Players" ) |
05 | local mainDataStore = DataStoreService:GetDataStore( "MainData" ) |
06 | local function processReceipt(receiptInfo) |
07 | local player = Players:GetPlayerByUserId(receiptInfo.PlayerId) |
09 | return Enum.ProductPurchaseDecision.NotProcessedYet |
11 | if receiptInfo.ProductId = = 1018802173 then |
12 | player.leaderstats.Coins.Value + = 1000 |
13 | mainDataStore:SetAsync( "Coins_" .. receiptInfo.PlayerId, player.leaderstats.Coins.Value) |
14 | ReplicatedStorage.SendClientMessage:FireClient(player, "The game has been saved!" ) |
16 | return Enum.ProductPurchaseDecision.PurchaseGranted |
18 | MarketplaceService.ProcessReceipt = processReceipt |
There are no errors on the server or the client, and I tested on Roblox Studio instead of a live Roblox server so I could use test purchases.