You can just loop through it, unfortunately you cannot guarantee the order due to it being a dictionary.
local someTable = { ["Stats"] = {
["Money"] = "0";
["Multi"] = "1";
["Rebirth"] = "0";
["Ultra Rebirth"] = "0";
};
["leaderstats"] = {
["Level"] = "1";
};
["Miscellaneous"] = {
["TutorialDone"] = false;
["TimePlayed"] = 0
}
}
local newTable = {}
for i, innerTable in pairs(someTable) do
for key,value in pairs(innerTable) do
newTable[key] = value
end
end
print(newTable)