ChildAdded (Event)

From Goodblox Wiki
Jump to navigationJump to search
Event
Syntax ChildAdded( Instance Child )
Description: Fired after a child is added.
In Object: Global


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

workspace.ChildAdded:connect(onChildAdded)