DescendantRemoving (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Mr Doom Bringer
No edit summary
>JulienDethurens
No edit summary
 
(40 intermediate revisions by 11 users not shown)
Line 1: Line 1:
{|
<onlyinclude>{{Event|name = DescendantRemoving
|<onlyinclude>{{Event|name=DescendantRemoving
|arguments = [[Instance]] <var>descendant</var>
|arguments=[[Instance]] ''descandent''
|description = Fired when a descendant is being removed.
|description= Fired after a descendant is removed.
|object = Instance
|object= Global
}}</onlyinclude>
|}}
 
</onlyinclude>
{{clear floats}}
|}
 
== Example ==
 
This code would print the name of any descendant that gets removed from the Workspace:
 
{{code|=
Workspace.DescendantRemoving:connect(function(descendant)
print(descendant)
end)
}}
 
[[Category:Events]]

Latest revision as of 06:09, 10 April 2012

DescendantRemoving ( Instance descendant )
Description Fired when a descendant is being removed.
Member of: Instance


Example

This code would print the name of any descendant that gets removed from the Workspace:

Workspace.DescendantRemoving:connect(function(descendant)
	print(descendant)
end)