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:
01 | local MarketplaceService = game:GetService( "MarketplaceService" ) |
02 | --local ds = game:GetService("DataStoreService"):GetDataStore("PvPPurchaseHistory") |
03 |
04 | MarketplaceService.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 |
I found out why... The suiteIds
variable doesn't exist. Then fixed the variable p
not existing by changing it to player
. I'm so happy for the in-game developer console.