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 |
04 | Tool.Equipped:Connect( function (Mouse) |
05 | Mouse.Button 1 Down:Connect( function () |
06 | Door.Transparency = 0.5 |
07 | Door.BrickColor = BrickColor.new( "Camo" ) |
10 | Door.BrickColor = BrickColor.new( "Dark stone grey" ) |
Any help would be appreciated.