Deactivated (Event)

(Redirected from Deactivated)
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)