DescendantRemoving (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Legend26 Spelling error fix |
>JulienDethurens No edit summary |
||
(13 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
<onlyinclude>{{Event|name = DescendantRemoving | |||
|arguments = [[Instance]] <var>descendant</var> | |||
|arguments = [[Instance]] | |description = Fired when a descendant is being removed. | ||
|description = Fired | |||
|object = Instance | |object = Instance | ||
}}</onlyinclude> | |||
{{ | {{clear floats}} | ||
== Example == | |||
end | |||
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]] | [[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)