ChildAdded (Event)

From Legacy Roblox Wiki
Jump to navigationJump to search
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)