daily pastebin goal
40%
SHARE
TWEET

startup

a guest Jan 29th, 2018 51 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function clearPath()
  2.   redstone.setOutput("left", true)
  3.   sleep(1)
  4.   redstone.setOutput("left", false)
  5. end
  6.  
  7. function forward()
  8.   clearPath()
  9.   redstone.setOutput("front", true)
  10.   sleep(1)
  11.   redstone.setOutput("front", false)
  12. end
  13.  
  14. function breaker()
  15.   redstone.setOutput("back", true)
  16.   sleep(3)
  17.   redstone.setOutput("back", false)
  18. end
  19.  
  20. for k,v in pairs(redstone.getSides()) do
  21.   print (v)
  22. end
  23.  
  24. while true do
  25.   breaker()
  26.   forward()
  27.   sleep(5)
  28. end
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top