ClearAllChildren (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>SCARFACIAL
Created page with "<onlyinclude>{{Method |name = ClearAllChildren |description = Calls Remove on all descendants of the Instance, but leaves the Instance itself. |object = Instan..."
>JulienDethurens
...
 
(17 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<onlyinclude>{{Method
<onlyinclude>{{Method
|name        = ClearAllChildren
|name        = ClearAllChildren
|description = Calls [[Remove]] on all descendants of the Instance, but leaves the Instance itself.
|description = Removes all descendants of the {{type|instance=Instance}}, but leaves the {{type|instance=Instance}} itself.
|object      = Instance
|object      = Instance
}}</onlyinclude>
}}</onlyinclude>
Line 7: Line 7:
{{clear floats}}
{{clear floats}}


{{Example|<pre>
{{Example|{{code|=
game.Workspace.Model:ClearAllChildren()
model = game.Workspace.Model
</pre>}}
 
in1 = Instance.new("Part", model)
in2 = Instance.new("Sparkles", model)
 
game.Workspace.Model:ClearAllChildren() --the part and sparkles in the model will be removed, but the model will remain
}}}}


[[Category:Methods]]
[[Category:Methods]]

Latest revision as of 05:56, 7 April 2012

ClearAllChildren( )
Returns nil
Description: Removes all descendants of the Instance, but leaves the Instance itself.
Member of: Instance


Example
model = game.Workspace.Model

in1 = Instance.new("Part", model)
in2 = Instance.new("Sparkles", model)

game.Workspace.Model:ClearAllChildren() --the part and sparkles in the model will be removed, but the model will remain