Remove (Method)

From Legacy Roblox Wiki
Revision as of 09:01, 26 December 2010 by >NXTBoy (Fixed)
Jump to navigationJump to search
Remove( )
Returns nil
Description: Sets the Parent property to nil and calls Remove() on all children.
Member of: Instance
Example
function onTouched(hit)
  hit:Remove()
end

script.Parent.Touched:connect(onTouched)