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

Why is this adding more than it should?

Asked by 10 years ago

This keeps adding more than 10 like its suppose to... I've had this problem for many days and I can't find out why..

server script :

01local DataStore = game:GetService("DataStoreService"):GetDataStore("PurchaseHistory")
02local MarketService = game:GetService("MarketplaceService")
03local productId = 23429504
04 
05function CompletePurchase(player)
06    local stats = player:WaitForChild("leaderstats")
07    local cash  = stats:WaitForChild("Cash")
08local debounce = true   
09cash.Value  = cash.Value + 10
10end
11 
12MarketService.ProcessReceipt = function(receiptInfo)
13    for i, player in ipairs(game.Players:GetChildren()) do
14        if player.userId == receiptInfo.PlayerId then
15            local ID,PROD = receiptInfo.PlayerID, receiptInfo.PurchaseId
View all 27 lines...

just incase you need this script : server script

01local player = game.Players.LocalPlayer
02local credits = game.StarterGui.MainGuis.Shop.Credits
03game.Players.PlayerAdded:connect(function(player)
04    local stats = Instance.new("Folder",player)
05    stats.Name = 'leaderstats'
06    local cash = Instance.new("IntValue",stats)
07    cash.Name = "Cash"
08    cash.Value = 10
09    credits.Text = "Cash: "..player.leaderstats.Cash.Value..'$'
10end)

promptpurchase script : local script

1local buy = script.Parent
2local productId = 23429504
3enable=true
4buy.MouseButton1Click:connect(function()
5if enable==true then
6enable=false game:GetService("MarketplaceService"):PromptProductPurchase(game.Players.LocalPlayer, productId)
7enable=true
8end
9end)
1
Try adding a debounce to the part that updates the cash. ZeroBits 142 — 10y
0
How can I do that? UnleashedGamers 257 — 10y
0
Basically, you would do it like this: jjwood1600 215 — 9y
0
Debounce = 0 and then if the product is bought check if the debounce is 0, if so then you can do what you need to do and then make the debounce 1. This will stop it from awarding multiple leaderstats. Hope that helped! jjwood1600 215 — 9y

1 answer

Log in to vote
-2
Answered by 9 years ago

Basic additions. Just add local debounce = false anywhere, make sure to put if debounce == false then debounce = true above where the problem is and at the end of the if statement, add debounce = false

EDIT: (P.S. Sorry, I didn't realize that somebody else posted that :/)

Ad

Answer this question