How Do I Make Multiple Developer Products?
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
3 | local MarketplaceService = game:GetService( "MarketplaceService" ) |
4 | local Players = game:GetService( "Players" ) |
5 | local productID = 1075804768 |
6 | script.Parent.MouseButton 1 Click:Connect( function (promptPurchase) |
7 | local player = Players.LocalPlayer |
8 | MarketplaceService:PromptProductPurchase(player, productID) |
And then
the script inside of script1
03 | local MarketplaceService = game:GetService( "MarketplaceService" ) |
04 | function processReceipt(receiptInfo) |
05 | local player = game:GetService( "Players" ):GetPlayerByUserId(receiptInfo.PlayerId) |
07 | return Enum.ProductPurchaseDecision.NotProcessedYet |
10 | print (player.Name .. " just bought " .. receiptInfo.ProductId) |
11 | workspace.Meteorite.Transparency = 0 |
13 | for i,v in pairs (game.Players:GetPlayers()) do |
14 | v.Character.Humanoid.Health = 0 |
17 | workspace.Meteorite.Transparency = 1 |
18 | return Enum.ProductPurchaseDecision.PurchaseGranted |
20 | MarketplaceService.ProcessReceipt = processReceipt |
can someone help? I'm in no DIRE NEED it would just help improve