IsDescendantOf (Function): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>GoldenUrg fix format |
>LPGhatguy No edit summary |
||
Line 2: | Line 2: | ||
|<onlyinclude>{{Function| | |<onlyinclude>{{Function| | ||
name = IsDescendantOf | name = IsDescendantOf | ||
|arguments = [[Instance]] | |arguments = [[Instance]] Ancestor | ||
|returns = [[ | |returns = [[Boolean]] Is descendant | ||
|description = Returns | |description = Returns whether the object is a descendant of '''Ancestor'''. | ||
|object = | |object = Instance | ||
|}} | |}} | ||
</onlyinclude>|} | </onlyinclude>|} |
Revision as of 21:14, 27 December 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