I have a function connecting a server script which contains a table and a local script to do whatever with what it got from the server. The table the server returns is basically:
{["TestName"] = {["description"] = "Test Description"}, ["maxcount"] = 5}
Heres what i’m doing on the client:
-- info is the table
local description = info["description"]
local max_count = info["maxcount"]
and just this defining causes this error: attempt to index number with 'description'
How is this even happening? Please help.