ChildAdded (Event): Difference between revisions

From Goodblox Wiki
Jump to navigationJump to search
(Created page with "<onlyinclude>{{Event| name = ChildAdded |arguments = Instance Child |description = Fired after a child is added. |object...")
(No difference)

Revision as of 11:51, 23 June 2020

Event
Syntax ChildAdded( Instance Child )
Description: Fired after a child is added.
In Object: Global


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

game.Workspace.ChildAdded:connect(onChildAdded)