DescendantRemoving (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Legend26
Spelling error fix
>SoulStealer9875
No edit summary
Line 8: Line 8:
{{Example|<pre>
{{Example|<pre>
local function onDescendantRemoving(ins)
local function onDescendantRemoving(ins)
   print(ins)
   print(ins.Name)
end
end
game.Workspace.DescendantRemoving:connect(onDescendantRemoving)
game.Workspace.DescendantRemoving:connect(onDescendantRemoving)

Revision as of 13:07, 10 July 2011

DescendantRemoving ( Instance descendant )
Description Fired before a descendant is removed.
Member of: Instance
Example
local function onDescendantRemoving(ins)
  print(ins.Name)
end
game.Workspace.DescendantRemoving:connect(onDescendantRemoving)