["username1"] = {
["password"] = 1234567890,
["balance"] = 1000000,
["nickname"] = "UserPerson",
["MoreInfo"] = "Something interesting",
["rank"] = "Failure",
}
["username2"] = {
["password"] = 1234567890,
["balance"] = 1000000,
["nickname"] = "UserPerson",
["MoreInfo"] = "Something interesting",
["rank"] = "Failure",
}
["username3"] = {
["password"] = 1234567890,
["balance"] = 1000000,
["nickname"] = "UserPerson",
["MoreInfo"] = "Something interesting",
["rank"] = "Failure",
}
["username4"] = {
["password"] = 1234567890,
["balance"] = 1000000,
["nickname"] = "UserPerson",
["MoreInfo"] = "Something interesting",
["rank"] = "Failure",
}
Then be able to access them with things like:
table.insert("username1", {["MoreStuff"] = "sfdgfgdhth",})
and to remove stuff. But how do I actually change information already there and how do I remove a record?Thanks