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

How Do I Make Multiple Developer Products?

Asked by 4 years ago

Halp? Okay so, I know how to make a single one, and have it works like right now, I have an annihilate all players button on make game, its a developer's product and works, However, It works in 2 scripts. and if I have 2 in the same game, They interact with eachother and its really annoying. i'll give you script 1 and then the script inside of that script

1--script1
2 
3local MarketplaceService = game:GetService("MarketplaceService")
4local Players = game:GetService("Players")
5local productID = 1075804768
6script.Parent.MouseButton1Click:Connect(function(promptPurchase)
7    local player = Players.LocalPlayer
8    MarketplaceService:PromptProductPurchase(player, productID)
9end)

And then the script inside of script1

01--script2
02 
03local MarketplaceService = game:GetService("MarketplaceService")
04function processReceipt(receiptInfo)
05    local player = game:GetService("Players"):GetPlayerByUserId(receiptInfo.PlayerId)
06    if not player then
07        return Enum.ProductPurchaseDecision.NotProcessedYet
08    end
09    -- script below controls what happens if bought
10        print(player.Name .. " just bought " .. receiptInfo.ProductId)
11         workspace.Meteorite.Transparency = 0
12    wait(10)  
13    for i,v in pairs(game.Players:GetPlayers()) do
14        v.Character.Humanoid.Health = 0
15    end
16 
17    workspace.Meteorite.Transparency = 1
18    return Enum.ProductPurchaseDecision.PurchaseGranted
19end
20MarketplaceService.ProcessReceipt = processReceipt

can someone help? I'm in no DIRE NEED it would just help improve

Answer this question