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

How to make something happen while left click is held down?

Asked by 5 years ago
Edited 5 years ago

Hello, I'm fairly new to scripting. I was testing out things and couldn't figure out how to make something happen while left click is held down. I am trying to make x-ray goggles. I want it to be green and halfway transparent while the left click is held down and normal when not. This is what I have so far. As you can see, right now if you click once and changes for 20 secs and reverts back to normal.

01   local Door = game.Workspace.Doory
02    local Tool = script.Parent
03 
04Tool.Equipped:Connect(function(Mouse)
05    Mouse.Button1Down:Connect(function()
06         Door.Transparency = 0.5
07         Door.BrickColor = BrickColor.new("Camo")
08        wait(20)
09         Door.Transparency = 0
10         Door.BrickColor = BrickColor.new("Dark stone grey")
11    end)
12end)

Any help would be appreciated.

1 answer

Log in to vote
0
Answered by
lytew 99
5 years ago
Edited 5 years ago

I'm not sure if it will work, but try to create a mouse variable:

01local Door = game.Workspace.Doory
02        local Tool = script.Parent
03    local mouse =  game.Players.LocalPlayer:GetMouse
04    Tool.Equipped:Connect(function(Mouse)
05        mouse.Button1Down:Connect(function()
06             Door.Transparency = 0.5
07             Door.BrickColor = BrickColor.new("Camo")
08            wait(20)
09             Door.Transparency = 0
10             Door.BrickColor = BrickColor.new("Dark stone grey")
11        end)
12    end)

try to put that script in a script location if possible and try again

0
Did what the old script did but I wan't it to go transparent while the button is held down and switch back when it is not. wildmanx20 35 — 5y
0
what do you specifycally want? lytew 99 — 5y
0
Sorry i'm late but I just saw this. I'm trying to have the brick color and transparency change ONLY when the button is being held down. Then when I let go of the right click the part gets back it's original properties. wildmanx20 35 — 5y
0
did you manage to do that? lytew 99 — 5y
Ad

Answer this question