DescendantRemoving (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Mr Doom Bringer m DescendantRemoving moved to DescendantRemoving (Event) |
>JulienDethurens No edit summary |
||
(42 intermediate revisions by 11 users not shown) | |||
Line 1: | Line 1: | ||
{{Event|name=DescendantRemoving | <onlyinclude>{{Event|name = DescendantRemoving | ||
|arguments=[[Instance]] | |arguments = [[Instance]] <var>descendant</var> | ||
|description= Fired | |description = Fired when a descendant is being removed. | ||
|object= | |object = Instance | ||
|}} | }}</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)