IsDescendantOf (Function): Difference between revisions
From Goodblox Wiki
Jump to navigationJump to search
mNo edit summary |
m (→Example) |
||
Line 14: | Line 14: | ||
==Example== | ==Example== | ||
<pre> | <pre> | ||
a = Instance.new("Part") --> put a part in workspace | local a = Instance.new("Part") --> put a part in workspace | ||
a.Parent = game.Workspace | a.Parent = game.Workspace | ||
Revision as of 02:41, 22 September 2021
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 = game.Workspace print(a:IsDescendantOf(game)) --> prints true