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

When I click the part the color changing script won't work, why is that?

Asked by 5 years ago
Edited 5 years ago

This is supposed to make it so that when you press a button light12 turns white

01local db = true
02local click = script.Parent.ClickDetector
03click.MouseClick:Connect(function()
04    script.Parent.BrickColor = BrickColor.new("Black")
05    wait(1)
06    if  script.Parent.BrickColor == "Black" then
07        game.workspace.light12.BrickColor = BrickColor.new("White")
08    end
09end)
10while wait(5) do
11print(game.workspace.light12.BrickColor)
12end

all the printing works but light12 won't change color. Why is that?

0
Any error messages? (Also capitalize the "w" in workspace) Jexpler 63 — 5y
0
It's because you're trying to compare a brickcolor value with string at line 6. Replace the string with BrickColor.new("Black") ScuffedAI 435 — 5y

1 answer

Log in to vote
-1
Answered by
0_2k 496 Moderation Voter
5 years ago
Edited 5 years ago

You have a deb variable but not putting it to use, so remove it or use it.

01local click = script.Parent.ClickDetector
02 
03click.MouseClick:Connect(function()
04    script.Parent.BrickColor = BrickColor.new("Black")
05    workspace.light12.BrickColor = BrickColor.new("White")
06    wait(1)
07end)
08 
09while wait(5) do
10    print(game.workspace.light12.BrickColor)
11end
0
-1 this doesn't solve the question as well as you didn't clean the code up; You should have noticed that the conditional statement is pointless as he sets it to Black only to check if it's black again. BlackOrange3343 2676 — 5y
0
Gotcha and revised 0_2k 496 — 5y
Ad

Answer this question