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 :
01 | local DataStore = game:GetService( "DataStoreService" ):GetDataStore( "PurchaseHistory" ) |
02 | local MarketService = game:GetService( "MarketplaceService" ) |
03 | local productId = 23429504 |
04 |
05 | function CompletePurchase(player) |
06 | local stats = player:WaitForChild( "leaderstats" ) |
07 | local cash = stats:WaitForChild( "Cash" ) |
08 | local debounce = true |
09 | cash.Value = cash.Value + 10 |
10 | end |
11 |
12 | MarketService.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 |
just incase you need this script : server script
01 | local player = game.Players.LocalPlayer |
02 | local credits = game.StarterGui.MainGuis.Shop.Credits |
03 | game.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.. '$' |
10 | end ) |
promptpurchase script : local script
1 | local buy = script.Parent |
2 | local productId = 23429504 |
3 | enable = true |
4 | buy.MouseButton 1 Click:connect( function () |
5 | if enable = = true then |
6 | enable = false game:GetService( "MarketplaceService" ):PromptProductPurchase(game.Players.LocalPlayer, productId) |
7 | enable = true |
8 | end |
9 | end ) |
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 :/)