IsDescendantOf (Function)

From Legacy Roblox Wiki
Revision as of 21:14, 27 December 2010 by >LPGhatguy
Jump to navigationJump to search
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