'DataStoreSerivce' is not a valid Service name
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:
01 | local MarketplaceService = game:GetService( "MarketplaceService" ) |
02 | local ds = game:GetService( "DataStoreSerivce" ):GetDataStore( "PvPPurchaseHistory" ) |
04 | MarketplaceService.ProcessReceipt = function (receiptInfo) |
06 | for i, player in ipairs (game.Players:GetChildren()) do |
07 | if player.userId = = receiptInfo.PlayerId then |
09 | if ( tonumber (receiptInfo.ProductId) = = 19304410 ) then |
11 | game.InsertService:LoadAsset( 25545089 ).OrangeKatana.Parent = player.Backpack |
12 | game.InsertService:LoadAsset( 25545089 ).OrangeKatana.Parent = player.StarterGear |
17 | local playerProductKey = "player_" .. receiptInfo.PlayerId .. "_purchase_" .. receiptInfo.PurchaseId |
18 | ds:IncrementAsync(playerProductKey, 1 ) |
20 | return Enum.ProductPurchaseDecision.PurchaseGranted |