IsDescendantOf (Function)

From Goodblox Wiki
Revision as of 20:50, 23 September 2021 by Xyrafrost (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Function
Syntax IsDescendantOf( Instance ancestor )
Returns Boolean 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

local a = Instance.new("Part") --> put a part in workspace
a.Parent = workspace

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