Parent (Property): Difference between revisions
From Goodblox Wiki
Jump to navigationJump to search
Pizzaboxer (talk | contribs) No edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
{{CatUp|Properties}} | {{CatUp|Properties}} | ||
<onlyinclude>{{Property | <onlyinclude>{{Property | ||
|name = Parent | |name = Parent | ||
Line 8: | Line 7: | ||
}}</onlyinclude> | }}</onlyinclude> | ||
Example: | '''Example:''' | ||
<pre> | <pre> | ||
print(script.Parent.Name) | print(script.Parent.Name) |
Latest revision as of 22:18, 23 September 2021
Property | |
---|---|
Name | Parent |
Property | Object An object's parent |
Description: | The hierarchical parent of the currently selected object. |
In Object: | Global |
Example:
print(script.Parent.Name) -- "Workspace" should appear in the output window (only if the script is located under Workspace).