Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Breaks when I unequip?

Asked by
A9X 10
9 years ago
01--[Variables
02 
03tool = Instance.new("Tool")
04handle = Instance.new("Part")
05debounce = false
06 
07local player = game.Players.LocalPlayer
08local mouse = player:GetMouse()
09 
10--[Program
11 
12tool.Name = "Codec"
13tool.Parent = player.Backpack
14 
15handle.Transparency = 1
View all 33 lines...

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?

1 answer

Log in to vote
0
Answered by
1waffle1 2908 Trusted Badge of Merit Moderation Voter Community Moderator
9 years ago

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.

1tool.Equipped:connect(function(mouse)

instead of mouse=player:GetMouse()

Ad

Answer this question