IsDescendantOf (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>MrNicNac
Just needs value, not instruction.
>MrNicNac
Just needs value, not instruction.
(No difference)

Revision as of 02:45, 11 April 2012

IsDescendantOf( Instance ancestor )
Returns bool
Description: Returns true if the object is an descendant of ancestor.
Member of: Instance

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)) --> true