IsDescendantOf (Method)

From Legacy Roblox Wiki
Revision as of 14:10, 30 August 2010 by >Camoy (added/formatted)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
IsDescendantOf( Instance ancestor )
Returns boolean is descendant
Description: Returns true if the object is an descendant of ancestor.
Member of: [[RBX.lua.Instance (Object)|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)) --> prints true