ChildAdded (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>GoldenUrg
better?
>JulienDethurens
No edit summary
 
(38 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{|<onlyinclude>{{Event|name=ChildAdded
<onlyinclude>{{Event
|arguments=[[Instance]] Child
|name = ChildAdded
|description= Fired after a child is added.
|arguments = [[Instance]] <var>child</var>
|object= Global
|description = Fired after a child is added.
|}}</onlyinclude>
|object = Instance
|}
}}</onlyinclude>
== Description ==
Event is triggered when a new child has this object set as a parent. It applies only to immediate children and not other [[IsDescendantOf (Function)|Descendants]]. (See [[DescendantAdded (Event)|DescendantAdded]])


== Usage ==
<div class="visualClear"></div>
Example:
<pre>
function onChildAdded(child)
  print (child.Name)
end


game.Workspace.ChildAdded:connect(onChildAdded)
== Example ==
</pre>
 
Event is triggered when a new child has this object set as a parent. It applies only to immediate children and not other [[IsDescendantOf (Function)|Descendants]]. (See [[DescendantAdded]]).{{code|=
Workspace.ChildAdded:connect(function(child)
print(child.Name)
end)
}}
 
[[Category:Events]]

Latest revision as of 02:18, 25 March 2012

ChildAdded ( Instance child )
Description Fired after a child is added.
Member of: Instance

Example

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).

Workspace.ChildAdded:connect(function(child)
	print(child.Name)
end)