ChildAdded (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>JulienDethurens No edit summary |
>JulienDethurens No edit summary |
(No difference)
|
Latest revision as of 02:18, 25 March 2012
![]() | |
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)