DescendantAdded (Event)

From Legacy Roblox Wiki
Revision as of 14:38, 29 August 2010 by >Camoy (Example added)
Jump to navigationJump to search
DescendantAdded ( Instance descendant )
Description Fired after a descendant is added.
Member of: [[RBX.lua.Instance (Object)|Instance]]
Example
local function onDescendantAdded(ins)
  print(ins)
end
game.Workspace.DescendantAdded:connect(onDescendantAdded)