Xinoz Posted March 3, 2014 Share Posted March 3, 2014 So, i know a very little about tables and need some help. How can i create multiple tables inside a table with seperate data? Like: object1 = { } object2 = { } object3 = { } -- But then all those objects in 1 table and add seperate data to them. Link to comment
Moderators Citizen Posted March 3, 2014 Moderators Share Posted March 3, 2014 rootTable = { object1 = { }, object2 = { }, object3 = { } } -- go get the object1 table: local table1 = rootTable.object1 Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now