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

Developer Product: 2 Different purchase buttons but give the same thing?

Asked by
Ben_B 9
4 years ago

I have a GUI which has 2 different developer products to buy, but both of them give me the same purchase? One is for 1000 credits, the other is for 5000. The 1000 one works fine but when i press on the 5,000 one, it prompts me for the right id but then only gives me 1000 credits, please help. Code inside purchase buttons:

01local main = script.Parent
02local button = script.Parent
03local MarketPlaceService = game:GetService("MarketplaceService")
04local players = game:GetService("Players")
05local ProductId = 985109115
06local player = game.Players.LocalPlayer
07 
08 
09 
10 
11button.MouseButton1Down:Connect(function()
12    MarketPlaceService:PromptProductPurchase(player, ProductId)
13 
14 
15end)
01local main = script.Parent
02local button = script.Parent
03local MarketPlaceService = game:GetService("MarketplaceService")
04local players = game:GetService("Players")
05local ProductId = 982191893
06local player = game.Players.LocalPlayer
07 
08 
09 
10 
11button.MouseButton1Down:Connect(function()
12    MarketPlaceService:PromptProductPurchase(player, ProductId)
13 
14end)
15 
View all 42 lines...
01local MarketPlaceService = game:GetService("MarketplaceService")
02local players = game:GetService("Players")
03local ProductId = 985109115
04 
05local function processReceipt(receiptInfo)
06    local player = players:GetPlayerByUserId(receiptInfo.PlayerId)
07    if not player then
08        return Enum.ProductPurchaseDecision.NotProcessedYet
09    end
10 
11        if player then
12    print ("Working")
13        game.Workspace.Sounds.PurchaseSound:Play()
14            local new = player.leaderstats.Credits.Value + 5000
15    player.leaderstats.Credits.Value = new
View all 21 lines...

Thanks.

1 answer

Log in to vote
0
Answered by
Ben_B 9
4 years ago

I found the problem, I just need to assign the ProductId into this script but where and how would i do it?

01local MarketPlaceService = game:GetService("MarketplaceService")
02local players = game:GetService("Players")
03local ProductId = 985109115
04 
05local function processReceipt(receiptInfo)
06    local player = players:GetPlayerByUserId(receiptInfo.PlayerId)
07    if not player then
08        return Enum.ProductPurchaseDecision.NotProcessedYet
09    end
10 
11        if player  then
12    print ("Working")
13        game.Workspace.Sounds.PurchaseSound:Play()
14            local new = player.leaderstats.Credits.Value + 5000
15    player.leaderstats.Credits.Value = new
View all 21 lines...
Ad

Answer this question