I Need Help With This Door Script

I’ve been trying to make a door script that open’s when all three Block have been touched. But I don’t know how to make it work. here’s the script:

for i,switch in ipairs(switches) do
switch.Bool.Value=false

switch.Touched:Connect(function()

  switch.Bool.Value=true
  
  print(switch,switch.Bool.Value)

end)

if switches[1].Bool.Value==true and switches[2].Bool.Value==true and switches[3].Bool.Value==true then
print(“HI :D”)
end
end

It prints hi cause I was trying to find out how to make it work just in case you were wondering.

Try something like this.

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

nah didn’t work :frowning: it failed to print when all switches were set to true

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
1 Like

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