ChildRemoved (Event)

From Legacy Roblox Wiki
Jump to navigationJump to search
ChildRemoved ( Instance child )
Description Fired when a child is removed from the object.
Member of: Instance


Example

This code will print the name of any child that is removed from the Workspace:

Workspace.ChildRemoved:connect(function(child)
	print(child)
end)