ClearAllChildren (Method): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Legend26 No edit summary |
>Flurite No edit summary |
||
Line 8: | Line 8: | ||
{{clear floats}} | {{clear floats}} | ||
{{Example| | {{Example|{{code|= | ||
model = game.Workspace.Model | model = game.Workspace.Model | ||
Line 15: | Line 15: | ||
game.Workspace.Model:ClearAllChildren() --the part and sparkles in the model will be removed, but the model will remain | game.Workspace.Model:ClearAllChildren() --the part and sparkles in the model will be removed, but the model will remain | ||
}}}} | |||
[[Category:Methods]] | [[Category:Methods]] |
Revision as of 22:23, 6 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