Parent (Property): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>XLEGOx
No edit summary
>Legend26
No edit summary
Line 1: Line 1:
<onlyinclude>{{Property
<onlyinclude>{{Property
|name        = Parent
|name        = Parent
|property    = [[Instance|Object]] ''An object's parent''
|type        = {{type|instance=Instance}}
|description = The hierarchical parent of the object. When no scripts hold references to an object, it will still be maintained as long as it's parent is set to an object which does have references to it, either by other objects or scripts. The toplevel [[DataModel]] object (the one referred to as the "game" by scripts) has no parent, but always has a reference held to it by the game engine, and exists for the duration of a session.
|description = The hierarchical parent of the object. When no scripts hold references to an object, it will still be maintained as long as it's parent is set to an object which does have references to it, either by other objects or scripts. The toplevel [[DataModel]] object (the one referred to as the "game" by scripts) has no parent, but always has a reference held to it by the game engine, and exists for the duration of a session.
|object      = Instance
|object      = Instance

Revision as of 20:09, 6 April 2012

Parent
Type Instance
Description The hierarchical parent of the object. When no scripts hold references to an object, it will still be maintained as long as it's parent is set to an object which does have references to it, either by other objects or scripts. The toplevel DataModel object (the one referred to as the "game" by scripts) has no parent, but always has a reference held to it by the game engine, and exists for the duration of a session.
Member of Instance


Example
print(script.Parent.Name)
-- "Workspace" should appear in the output window (only if the script
is located under Workspace).


See Also

Instance Hierarchy