IsDescendantOf (Function): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Anaminus m IsDescendentOf moved to IsDescendantOf |
>Anaminus m typo |
||
Line 1: | Line 1: | ||
{{Function| | {{Function| | ||
name = | name = IsDescendantOf | ||
|arguments = [[Instance]] ancestor | |arguments = [[Instance]] ancestor | ||
|returns = [[Bool|Boolean]] is | |returns = [[Bool|Boolean]] is descendant | ||
|description = Returns True if the object is an | |description = Returns True if the object is an descendant of ''ancestor'' | ||
|object = Global | |object = Global | ||
|}} | |}} |
Revision as of 23:01, 3 August 2008
IsDescendantOf( Instance ancestor ) | |
Returns | Boolean is descendant |
Description: | Returns True if the object is an descendant 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