Remove (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Popinman322
Clarified information
m Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>"
Tags: mobile web edit mobile edit
 
(5 intermediate revisions by 2 users not shown)
Line 3: Line 3:
<onlyinclude>{{Method
<onlyinclude>{{Method
|name        = Remove
|name        = Remove
|description = Sets the Parent property to [[nil]] and calls Remove() on all children.
|description = Sets the Parent property to {{nil}} and calls Remove() on all children.
|object      = Instance
|object      = Instance
}}</onlyinclude>
}}</onlyinclude>
Line 9: Line 9:
{{clear floats}}
{{clear floats}}


{{Example|This is an example of removing a part in the Workspace. Make sure there is one there before trying this.
{{Example|This is an example of removing a part in the [[RBX.lua.Workspace (Object)|Workspace]]. Make sure there is one there before trying this.
<pre>
<syntaxhighlight lang="lua">
game.Workspace.Part:Remove()
Workspace.Part:Remove()
</pre>
</syntaxhighlight>
}}
}}


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

Latest revision as of 06:14, 27 April 2023

Deprecated:This item is deprecated. Do not use it for new work. Use ClearAllChildren to get rid of all child objects, or Destroy to completely destroy this object and its descendants. If you have to remove an object from the game, and you must return it again later, set its Parent property to nil.
Remove( )
Returns nil
Description: Sets the Parent property to nil and calls Remove() on all children.
Member of: Instance


Example
This is an example of removing a part in the Workspace. Make sure there is one there before trying this.
Workspace.Part:Remove()