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

What is wrong with this code here? try to check if brickcolor is equal to lime green.

Asked by 5 years ago
01script.Parent.ClickDetector.MouseClick:Connect(function()
02 
03if(game.Workspace.Light_Stat_1.BrickColor == BrickColor.new("Lime green"))then
04 
05    print("hi2")
06 
07    local Lift1 = Instance.new("Part")
08 
09    Lift1.Parent = game.Workspace
10 
11    Lift1.Shape = "Cylinder"
12 
13    Lift1.Anchored = true
14 
15    Lift1.CanCollide = true
View all 25 lines...
0
So it sure be like when you click it check for lime green then runs the code down below that. vortex767 20 — 5y
0
Try using "BrickColor.new(1020)" BashGuy10 384 — 5y
0
You mans a genuis vortex767 20 — 5y
0
One Question how would i loop this untill it is that color? vortex767 20 — 5y

1 answer

Log in to vote
1
Answered by
karlo_tr10 1233 Moderation Voter
5 years ago

Your BrickColor isn't Lime green because I just tested with part and works for me:

1if game.Workspace.Part.BrickColor == BrickColor.new("Fossil") then
2    print("Test")
3end
4-- Prints Test
0
This is the only answer that makes sense. His conditional statement is just fine. It may not be visually appealing but the syntax is right. Unhumanly 152 — 5y
0
Ya but it is a button i made so when i press it it check if it is lime green then mades a part but it starts as really red vortex767 20 — 5y
Ad

Answer this question