IsDescendantOf (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>SoulStealer9875
Doesn't this look better?
>Legend26
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 10: Line 10:


{{Example|
{{Example|
<pre>a = Instance.new("Part") --> put a part in workspace
{{code and output|code=a = Instance.new("Part") -- put a part in workspace
a.Parent = game.Workspace
a.Parent = game.Workspace
</pre>
print(a:IsDescendantOf(game)) -- see if part 'a' is a descendant of workspace
print(a:IsDescendantOf(game)) --> prints true
|output=
 
true
}}
}}
}}
[[Category:Methods]]
[[Category:Methods]]

Latest revision as of 03:38, 11 April 2012

IsDescendantOf( Instance ancestor )
Returns bool
Description: Returns true if the object is an descendant of ancestor.
Member of: Instance

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)) -- see if part 'a' is a descendant of workspace
true