of     1   

TheSicklaTwins
#220032149Thursday, June 29, 2017 2:59 PM GMT

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
TheSicklaTwins
#220036865Thursday, June 29, 2017 4:27 PM GMT

anyone?

    of     1