IsDescendantOf (Function): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Mathchamp
m fixed link - Boolean
>XLEGOx
No edit summary
Line 6: Line 6:
|object              = Global
|object              = Global
|}}
|}}
==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").Parent --> put a part in workspace
a.Parent = game.Workspace
print(a:IsDescendantOf(game)) --> prints true
</pre>

Revision as of 04:08, 29 June 2008

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