Why wont my Developers product give the player the money they bought?
So, I've been working on this thing. and for some reason, when I buy it, it doesnt give the player the currency they are owed?
Help pls ;-;
Script 1(localscript in button)
1 | local MarketPlace = game:GetService( "MarketplaceService" ) |
2 | local players = game:GetService( "Players" ) |
4 | local ProductId = 1082680116 |
5 | local player = game.Players.LocalPlayer |
6 | script.Parent.MouseButton 1 Click:Connect( function () |
8 | MarketPlace:PromptProductPurchase(player, ProductId) |
Script 2(script in serverscriptservice)
01 | local MarketPlace = game:GetService( "MarketplaceService" ) |
02 | local players = game:GetService( "Players" ) |
03 | local ProductId = (TheProductID) |
05 | local function proccessReciept(receiptInfo) |
07 | local player = players:GetPlayerByUserId(receiptInfo.PlayerId) |
11 | return Enum.ProductPurchaseDecision.NotProcessedYet |
14 | player:WaitForChild( 'leaderstats' ):WaitForChild( 'RunSpeed' ).Value = player.leaderstats.RunSpeed.Value + 80 |
15 | return Enum.ProductPurchaseDecision.PurchaseGranted |
Thers nothing in output either.