This is the script
local MarketplaceService = game:GetService("MarketplaceService")
local ProductId = 78004181
local Player = game.Players.LocalPlayer
local ds = game:GetService("DataStoreService"):GetDataStore("PurchaseHistory")
MarketplaceService.ProcessReceipt = function(receiptInfo)
-- use DataStore to record purchase
if receiptInfo.ProductId == ProductId then
game.Players.LocalPlayer.leaderstats.Money.Value = Player.leaderstats.Cash.Value + 10000
end
return Enum.ProductPurchaseDecision.PurchaseGranted
end
local playerProductKey = "player_" .. receiptInfo.PlayerId .. "_purchase_" .. receiptInfo.ProductId
ds:IncrementAsync(playerProductKey, 1)
I can't seem to figure out what's wrong |