ChildAdded (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy
No edit summary
>Camoy
No edit summary
(No difference)

Revision as of 21:56, 28 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)

Usage

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

game.Workspace.ChildAdded:connect(onChildAdded)