I was browsing around in the object browser, when I saw a bunch of ancestor functions. What do they do?
An ancestor of a part simply means the parent of the part. So, if a particle effect’s parent is part, the fire’s ancestor is part.
An ancestor of an object is like the opposite of the children of an object. For example, a part in 'Workspace' has the ancestors 'Workspace' and 'game'.
1 | local part = Instance.new( 'Part' , workspace) |
2 | print (part:FindFirstAncestor( 'Nonexistant' )) -- Prints nil |
3 | print (part:FindFirstAncestor( 'Workspace' ).Name) -- Prints 'Workspace' |