01 | -- [ Variables |
02 |
03 | tool = Instance.new( "Tool" ) |
04 | handle = Instance.new( "Part" ) |
05 | debounce = false |
06 |
07 | local player = game.Players.LocalPlayer |
08 | local mouse = player:GetMouse() |
09 |
10 | -- [ Program |
11 |
12 | tool.Name = "Codec" |
13 | tool.Parent = player.Backpack |
14 |
15 | handle.Transparency = 1 |
When I equip it for the first time and press Z, it works fine. But then when I de equip it, equip it again, and press Z, it does nothing. Anyone know why?
You're connecting to KeyDown every time the tool is equipped. You already have the player mouse, you aren't using the tool mouse. Connect to KeyDown outside of the Equipped event and make sure the tool is equipped before doing anything, or, use the tool's mouse instead of the player mouse.
1 | tool.Equipped:connect( function (mouse) |
instead of mouse=player:GetMouse()