ChildRemoved (Event)

From Legacy Roblox Wiki
Revision as of 00:25, 2 January 2011 by >Mattchewy
Jump to navigationJump to search
ChildRemoved ( Instance child )
Description Fired after a child is removed.
Member of: Instance
Example
local function onChildRemoved(child)
  print(child.Name)
end

game.Workspace.ChildRemoved:connect(onChildRemoved)