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

Why wont my Developers product give the player the money they bought?

Asked by 4 years ago

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)

1local MarketPlace = game:GetService("MarketplaceService")
2local players = game:GetService("Players")
3 
4local ProductId = 1082680116
5local player = game.Players.LocalPlayer
6script.Parent.MouseButton1Click:Connect(function()
7    wait(1)
8    MarketPlace:PromptProductPurchase(player, ProductId)
9end)

Script 2(script in serverscriptservice)

01local MarketPlace = game:GetService("MarketplaceService")
02local players = game:GetService("Players")
03local ProductId = (TheProductID)
04 
05local function proccessReciept(receiptInfo)
06 
07    local player = players:GetPlayerByUserId(receiptInfo.PlayerId)
08    if not player then
09        --Player probably left
10        --if they come back, the callback with begin again
11        return Enum.ProductPurchaseDecision.NotProcessedYet
12    end
13    if player then
14        player:WaitForChild('leaderstats'):WaitForChild('RunSpeed').Value = player.leaderstats.RunSpeed.Value +80
15        return Enum.ProductPurchaseDecision.PurchaseGranted
16    end
17 
18end

Thers nothing in output either.

0
Does your processReceipt function run in the first place? Where did you assign it to the ProcessReceipt function callback in MarketplaceService? User#834 0 — 4y
0
it says "Attempt to index nil with 'PlayerId' "? Galaxybombboy 134 — 4y
0
And, i just added that (How did i forget it?? XD) Galaxybombboy 134 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

It works now, not sure what I did but it works

Ad

Answer this question