IsDescendantOf (Function): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>LPGhatguy
No edit summary
>LPGhatguy
No edit summary
(No difference)

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