Deactivated (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>NXTBoy No edit summary |
>NXTBoy No edit summary |
(No difference)
|
Revision as of 17:30, 30 December 2010
![]() | |
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)