DescendantAdded (Event)

From Legacy Roblox Wiki
Revision as of 00:25, 2 January 2011 by >Mattchewy
Jump to navigationJump to search
DescendantAdded ( Instance descendant )
Description Fired after a descendant is added.
Member of: Instance
Example
local function onDescendantAdded(ins)
  print(ins)
end
game.Workspace.DescendantAdded:connect(onDescendantAdded)