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

Getting a "attempt to index a nil value" error in my DataStore2?

Asked by 5 years ago
Edited 5 years ago

The output tells me there's an error line 54 of my script, but I don't quite understand why?

01local DataStore2 = require(game.ServerScriptService:WaitForChild("DataModule")) --Gets DataStore Module
02local MainKey = "MainKey" -- The Key
03DataStore2.Combine(MainKey,"Stats","Achievment")
04 
05--DataTable
06 
07local function SetDataTable()-- Setting Variables In A Table
08    local UserData = {
09        Stats = {
10            ["Kills"] = 0,
11            ["Deaths,"] = 0,
12            ["XP"] = 0,
13            ["Level"] = 1,
14            ["Coins"] = 0,
15 
View all 89 lines...
0
I don't understand why there's an error!? Jomeliter 55 — 5y
0
Is there a problem with the function? Or with the Values? Jomeliter 55 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

I figured out the problem,

I forgot to get the DataTable in UserData

Ad

Answer this question