Need help with MouseClick Event?
Hello, I have a problem with my script. I have three different parts every second they change their color from red to green with math.random. Basiclly its a color cycle. So my problem is that have a part and its transparency is 1.
1 | if part 1. BrickColor = Brickcolor.new( "Dark Green" ) then |
2 | click.MouseClick:Connect( function ()( |
3 | Number 1. Transparency = 0 |
thats what I want to happen.
When the button is red then nothing happens - thats ok. When it gets green and I click on it - it works, but when it hits green and then I wait till it hits red again i click and it works as well - thats bad.
I know it might be complicated to understand...
Any solutions?
whole Script:
01 | Number 1 = script.Parent.Number 1 |
02 | part 1 = script.Parent.part 1 |
03 | part 2 = script.Parent.part 2 |
04 | part 3 = script.Parent.part 3 |
05 | click = script.Parent.part 1. ClickDetector |
07 | Number 1. Transparency = 1 |
08 | part 1. BrickColor = BrickColor.new( "Really red" ) |
09 | part 2. BrickColor = BrickColor.new( "Really red" ) |
10 | part 3. BrickColor = BrickColor.new( "Really red" ) |
13 | RandomPart = math.random( 1 , 3 ) |
16 | if RandomPart = = 1 then |
17 | part 1. BrickColor = BrickColor.new( "Dark green" ) |
18 | part 2. BrickColor = BrickColor.new( "Really red" ) |
19 | part 3. BrickColor = BrickColor.new( "Really red" ) |
20 | part 4. BrickColor = BrickColor.new( "Really red" ) |
21 | part 5. BrickColor = BrickColor.new( "Really red" ) |
22 | part 6. BrickColor = BrickColor.new( "Really red" ) |
23 | part 7. BrickColor = BrickColor.new( "Really red" ) |
24 | part 8. BrickColor = BrickColor.new( "Really red" ) |
25 | part 9. BrickColor = BrickColor.new( "Really red" ) |
26 | elseif RandomPart = = 2 then |
27 | part 1. BrickColor = BrickColor.new( "Really red" ) |
28 | part 2. BrickColor = BrickColor.new( "Dark green" ) |
29 | part 3. BrickColor = BrickColor.new( "Really red" ) |
30 | part 4. BrickColor = BrickColor.new( "Really red" ) |
31 | part 5. BrickColor = BrickColor.new( "Really red" ) |
32 | part 6. BrickColor = BrickColor.new( "Really red" ) |
33 | part 7. BrickColor = BrickColor.new( "Really red" ) |
34 | part 8. BrickColor = BrickColor.new( "Really red" ) |
35 | part 9. BrickColor = BrickColor.new( "Really red" ) |
36 | elseif RandomPart = = 3 then |
37 | part 1. BrickColor = BrickColor.new( "Really red" ) |
38 | part 2. BrickColor = BrickColor.new( "Really red" ) |
39 | part 3. BrickColor = BrickColor.new( "Dark green" ) |
42 | if part 1. BrickColor = = BrickColor.new( "Dark green" ) then |
43 | click.MouseClick:Connect( function () |
44 | Number 1. Transparency = 0 |
Thank you.