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

Changing color script isn't adding 1 to a value to change the color of "Target". What is going on?

Asked by
Rukreep 15
3 years ago
01local value = 0
02if value == 0 then
03                value = value + 1
04                Target.BrickColor = BrickColor.new("Black")
05            end
06            if value == 1 then
07                value = value + 1
08                Target.BrickColor = BrickColor.new("White")
09            end
10            if value == 2 then
11                value = value -2
12                Target.BrickColor = BrickColor.new("Mid gray")
13            end

I'm doing a building game but this doesn't work as intended. When a player clicks "Target", it checks if value is 0 and if so, it adds 1. If the player clicks "target" again it checks if value is1 and changes color and adds 1. Finally, when "target" is clicked, it checks for the value to be 2 and changes color and resets back to 0 by subtracting 2. Then when the player clicks "target" again the cycle repeats. I tested this and when I click "target" the color changes to white instead of what's supposed to be black. If I click it again nothing happens. Please help me.

0
Is this the exact code in the script, because if it is the indenting might be the problem but idk. Penguin_Dveloper -4 — 3y
0
It's not the exact code. It's a shortened up version, but this is the important stuff. Rukreep 15 — 3y
0
Is the indenting the same? Penguin_Dveloper -4 — 3y
0
Yes of course. Rukreep 15 — 3y
0
Any errors? SWX253 2 — 3y

2 answers

Log in to vote
1
Answered by
Robowon1 323 Moderation Voter
3 years ago

The program will continue through each if statement because you're adding 1 to value each time then proceeding into another if statement that's condition is value is 1 higher than before. To fix this, add a function that uses return statements.

01local Target = workspace:WaitForChild("Part") -- change this
02local CD = Target.ClickDetector
03 
04local value = 0
05 
06function changeColor()
07    if value == 0 then
08        value = value + 1
09        Target.BrickColor = BrickColor.new("Black")
10        return
11    end
12 
13    if value == 1 then
14        value = value + 1
15        Target.BrickColor = BrickColor.new("White")
View all 26 lines...
1
Yes this works, although you could use 'elseif -- then' statements instead appxritixn 2235 — 3y
Ad
Log in to vote
-2
Answered by 3 years ago

Indenting needs to be corrected im guessing

01if value == 0 then
02    value = value + 1
03    Target.BrickColor = BrickColor.new("Black")
04end
05 
06if value == 1 then
07    value = value + 1
08    Target.BrickColor = BrickColor.new("White")
09end
10 
11if value == 2 then
12    value = value -2
13    Target.BrickColor = BrickColor.new("Mid gray")
14end
0
Dooesn't work. Rukreep 15 — 3y

Answer this question