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

'DataStoreSerivce' is not a valid Service name

Asked by
Gamenew09 180
11 years ago

When I do the first line of the script calls it does the following error:

21:47:02.705 - 'DataStoreSerivce' is not a valid Service name 21:47:02.706 - Script 'ServerScriptService.Script', Line 2 21:47:02.708 - stack end

The script:

01local MarketplaceService = game:GetService("MarketplaceService")
02local ds = game:GetService("DataStoreSerivce"):GetDataStore("PvPPurchaseHistory")
03 
04MarketplaceService.ProcessReceipt = function(receiptInfo)
05    -- find the player based on the PlayerId in receiptInfo
06    for i, player in ipairs(game.Players:GetChildren()) do
07        if player.userId == receiptInfo.PlayerId then
08            -- check which product was purchased (required, otherwise you'll award the wrong items if you're using more than one developer product)
09            if(tonumber(receiptInfo.ProductId) == 19304410)then
10                --TODO: Buy the Ocherous Katana of the Setting Sun
11                game.InsertService:LoadAsset(25545089).OrangeKatana.Parent = player.Backpack
12                game.InsertService:LoadAsset(25545089).OrangeKatana.Parent = player.StarterGear
13            end
14        end
15    end
View all 21 lines...

1 answer

Log in to vote
5
Answered by
Merely 2122 Moderation Voter Community Moderator
11 years ago

It is spelled "DataStoreService" not "DataStoreSerivce"

0
Darn my spelling. Thanks Gamenew09 180 — 11y
Ad

Answer this question