Advertisement
mc1030

snad

Dec 22nd, 2020 (edited)
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. SIDES = { "left", "right" }
  2.  
  3. print("Snadding...")
  4. while true do
  5.     for i,s in ipairs(SIDES) do
  6.         redstone.setOutput(s, true)
  7.     end
  8.     os.sleep(0.2)
  9.     for i,s in ipairs(SIDES) do
  10.         redstone.setOutput(s, false)
  11.     end
  12.     os.sleep(0.2)
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement