IsDescendantOf (Function)

From Legacy Roblox Wiki
Revision as of 22:59, 3 August 2008 by >Anaminus (IsDescendentOf moved to IsDescendantOf)
Jump to navigationJump to search
IsDescendentOf( Instance ancestor )
Returns Boolean is descendent
Description: Returns True if the object is an descendent 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").Parent --> put a part in workspace
a.Parent = game.Workspace

print(a:IsDescendantOf(game)) --> prints true