Advertisement
RLPGhost

Tour a mo

Feb 4th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. local sleeptime = 3.0
  2.  
  3. while do true
  4. local iOn = redstone.getOutput("bottom")
  5. if iOn then
  6. while do iOn
  7. redstone.setOutput("back", 1 )
  8. sleep(0.1)
  9. redstone.setOutput("back", 0 )
  10.  
  11. sleep(sleeptime)
  12.  
  13. redstone.setOutput("back", 1 )
  14. sleep(0.1)
  15. redstone.setOutput("back", 0 )
  16.  
  17. sleep(sleeptime)
  18.  
  19. end
  20. end
  21. sleep(1.0)
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement