ChildAdded (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
Removed usage head
>Camoy
Removed usage head
(No difference)

Revision as of 13:46, 29 August 2010

ChildAdded ( Instance Child )
Description Fired after a child is added.
Member of: [[RBX.lua.Instance (Object)|Instance]]

Description

Event is triggered when a new child has this object set as a parent. It applies only to immediate children and not other Descendants. (See DescendantAdded)

Example
function onChildAdded(child)
  print (child.Name)
end

game.Workspace.ChildAdded:connect(onChildAdded)