I’ve been trying to get me a array like this:
["Some String"] = true,
["Some other string"] = true
etc
by using code.
I havn’t got any clue on how to create a array. i’ve tried:
local tempArray
tempArray = {}
tempArray["Some String"] = true
but this doesn’t work, it sais tempArray = nil.
What am I doing wrong?
There’s nothing wrong at all in the code you’ve posted.