IsDescendantOf (Function)

From ROBLOX Wiki
Revision as of 12:35, 11 December 2024 by PRG (talk | contribs) (Created page with "{| |<onlyinclude> {{Function| name = IsDescendantOf |arguments = Instance '''ancestor''' |returns = Boolean is descendant |description = Returns True if the object is a descendant of ''ancestor'' |object = Global |}}</onlyinclude> |} == Description == Tells whether one of the Parents of the Parents of etc.. of the calling object is the argument == Example == <pre> a = Instance.new("Part") --> pu...")
(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 a 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