ChildAdded (Event)

From Goodblox Wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
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)