local robot = require("robot") local component = require("component") local sides = require("sides") local rs = component.redstone local flag = true; while true do if rs.getInput(sides.top) > 0 then if not flag then robot.turnAround() flag = true end robot.suck() robot.dropDown() else if flag then robot.turnAround() os.sleep(5) flag = false end robot.suckDown() robot.drop() end end