IsDescendantOf (Function): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Mr Doom Bringer m IsDescendantOf moved to IsDescendantOf (Function) |
>Lastalon mNo edit summary |
||
Line 13: | Line 13: | ||
==Example== | ==Example== | ||
<pre> | <pre> | ||
a = Instance.new("Part") | a = Instance.new("Part") --> put a part in workspace | ||
a.Parent = game.Workspace | a.Parent = game.Workspace | ||
print(a:IsDescendantOf(game)) --> prints true | print(a:IsDescendantOf(game)) --> prints true | ||
</pre> | </pre> |
Revision as of 08:24, 27 November 2008
IsDescendantOf( Instance ancestor ) | |
Returns | Boolean is descendant |
Description: | Returns True if the object is an descendant of ancestor |
Description
Tells whether one of the Parents of the Parents of etc.. of the calling object is the argument
Example
a = Instance.new("Part") --> put a part in workspace a.Parent = game.Workspace print(a:IsDescendantOf(game)) --> prints true