local Tab = {Backpack = {}, Inventory = {} } local Data = { Backpack = {MachineGun = {}, Pistol = {}, Poop = {}}, Inventory = {Gatling = {}, ChineseImmigrints = {}}, } for i,v in pairs(Data) do end -- I want Tab to be exactly like Data --So Tab would have Machine Gun, Pistol, Poop, and Inventory would have Gatling, Chinese Immigrints in the Tab -- 100% efficiency
I couldn't think of a way it was just too confusing for me