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

Why does my Developer Product script not work?

Asked by
Gamenew09 180
11 years ago

On ROBLOX Tower I tried to have a developer product teleport the player instantly to their suite, the problem is it doesn't teleport them. I copied the code from PvP Battle which does work.

Here is the code:

01local MarketplaceService = game:GetService("MarketplaceService")
02--local ds = game:GetService("DataStoreService"):GetDataStore("PvPPurchaseHistory")
03 
04MarketplaceService.ProcessReceipt = function(receiptInfo)
05    -- find the player based on the PlayerId in receiptInfo
06    for i, player in pairs(game.Players:GetPlayers()) do
07        if player.userId == receiptInfo.PlayerId then
08            --while player:FindFirstChild("leaderstats") == nil do wait() end
09            -- check which product was purchased (required, otherwise you'll award the wrong items if you're using more than one developer product)
10--            if(tonumber(receiptInfo.ProductId) == 19185476)then
11--              player.leaderstats.Money.Value = player.leaderstats.Money.Value + 100
12--          end
13--          if(tonumber(receiptInfo.ProductId) == 19185483)then
14--              player.leaderstats.Money.Value = player.leaderstats.Money.Value + 1000
15--          end
View all 31 lines...
0
Perhaps post the line of teleportation entirely? Bebee2 195 — 11y
0
game:GetService("TeleportService"):Teleport(suiteIds:GetAsync(tostring(p.userId)),p) There you go Gamenew09 180 — 11y
0
If each index of receiptInfo is a string then receiptInfo.PlayerId will never be equal to player.userId. The wiki doesn't have an explanation of it yet so I'm not sure. 1waffle1 2908 — 11y

1 answer

Log in to vote
0
Answered by
Gamenew09 180
11 years ago

I found out why... The suiteIds variable doesn't exist. Then fixed the variable pnot existing by changing it to player. I'm so happy for the in-game developer console.

Ad

Answer this question