IsDescendantOf (Function): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Mr Doom Bringer No edit summary |
>GoldenUrg fix format |
||
Line 1: | Line 1: | ||
<onlyinclude> | {| | ||
{{Function| | |<onlyinclude>{{Function| | ||
name = IsDescendantOf | name = IsDescendantOf | ||
|arguments = [[Instance]] ancestor | |arguments = [[Instance]] ancestor | ||
Line 7: | Line 7: | ||
|object = Global | |object = Global | ||
|}} | |}} | ||
</onlyinclude> | </onlyinclude>|} | ||
==Description== | ==Description== |
Revision as of 22:58, 16 May 2010
|
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