for i,switch in ipairs(switches) do
switch.Bool.Value=false
switch.Touched:Once(function()
switch.Bool.Value=true
if switches[1].Bool.Value==true and switches[2].Bool.Value==true and switches[3].Bool.Value==true then
print("open door")
--code to open door
else
print("not all values are true")
end
end)
end
nvm I found it. oddly enough I believe that the for loop got stuck inside of the touch function to the point it couldn’t reach the if statement. here’s the solution:
for i,switch in ipairs(switches) do
switch.Bool.Value=false
switch.Touched:Once(function()
switch.Bool.Value=true
print(switch,switch.Bool.Value)
if switches[1].Bool.Value==true and switches[2].Bool.Value==true and switches[3].Bool.Value==true then
print("Hi :D")
else
print("Nah smell ya later!")
end
end)
end
Okay guys. Update on the code that’ll work better then the solution:
local switches = game.Workspace:WaitForChild("switches"):GetChildren()
while true do
for i,switch in ipairs(switches) do
switches[i].Touched:Once(function()
switches[i].BrickColor=BrickColor.new("Really red")
end)
if unpack(switches).BrickColor==BrickColor.new("Really red") then
TweenOpen:Play()
end
task.wait(1)
end
end