IsDescendantOf (Function)

From ROBLOX Wiki

(Redirected from IsDescendantOf)
Jump to: navigation, search
Function
SyntaxIsDescendantOf( Instance ancestor )
ReturnsBoolean is descendant
Description: Returns True if the object is an descendant of ancestor
In Object:Global

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
Personal tools