IsDescendantOf (Function): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Anaminus
m typo
>ArceusInator
Wrong name
 
(12 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Function|
#REDIRECT [[IsDescendantOf (Method)]]
name                  = IsDescendantOf
|arguments            = [[Instance]] ancestor
|returns              = [[Bool|Boolean]] is descendant
|description          = Returns True if the object is an descendant of ''ancestor''
|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>

Latest revision as of 15:55, 31 March 2011