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]] ancestor
|arguments            = [[Instance]] Ancestor
|returns              = [[Bool|Boolean]] is descendant
|returns              = [[Boolean]] Is descendant
|description          = Returns True if the object is an descendant of ''ancestor''
|description          = Returns whether the object is a descendant of '''Ancestor'''.
|object              = Global
|object              = Instance
|}}
|}}
</onlyinclude>|}
</onlyinclude>|}

Revision as of 21:14, 27 December 2010

IsDescendantOf( Instance Ancestor )
Returns Boolean Is descendant
Description: Returns whether the object is a 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