Advertisement
petschko

Redstone Clock

Jul 24th, 2015
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. output = "bottom" -- output side bottom|back|front|left|right|top
  2. interval = 0.2 -- Interval for rs clock
  3.  
  4. while true
  5. do
  6.     rs.setOutput(output, true)
  7.     rs.setOutput(output, false)
  8.     sleep(interval)
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement