IsDescendantOf (Function): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Lastalon mNo edit summary |
>Mr Doom Bringer No edit summary |
||
Line 1: | Line 1: | ||
<onlyinclude> | |||
{{Function| | {{Function| | ||
name = IsDescendantOf | name = IsDescendantOf | ||
Line 6: | Line 7: | ||
|object = Global | |object = Global | ||
|}} | |}} | ||
</onlyinclude> | |||
==Description== | ==Description== |
Revision as of 21:05, 22 April 2010
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