Deactivated (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Nominate
Created with event details and example.
>Emess
categorizing
 
(5 intermediate revisions by 2 users not shown)
Line 2: Line 2:
|name = Deactivated
|name = Deactivated
|description = Fired immediately after the [[Activated]] event.
|description = Fired immediately after the [[Activated]] event.
|object = [[Flag]], [[Tool]]
|object = Tool
}}</onlyinclude>
}}</onlyinclude>


Line 17: Line 17:
tool.Deactivated:connect(toolDeactivated)
tool.Deactivated:connect(toolDeactivated)
</pre>}}
</pre>}}
[[Category:Events]]

Latest revision as of 22:33, 13 May 2011

Deactivated ( )
Description Fired immediately after the Activated event.
Member of: Tool


Example
local tool = Instance.new("Tool")
tool.Parent = game.Players.Player.Backpack

function toolDeactivated()
print("tool deactivated!")
end

tool.Deactivated:connect(toolDeactivated)