Hello guys. I’m making my tree generator. It uses system like this:
local Tree = {
Trunk = {
Trunk = {
Trunk = {},
Trunk = {},
Trunk = {},
},
Trunk = {
Trunk = {},
Trunk = {},
},
},
}
So, there’s tree trunks parented to each other. Let’s say I want delete Tree:
Tree = nil
Will after this Trunk tables persist, if there’s no any other links to them, other than that Tree table which got nullified?