Arphahat

toggle open

Feb 17th, 2013
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.21 KB | None | 0 0
  1. while true do
  2.   if redstone.getInput("front")==true then
  3.     for i=1,9 do
  4.       redstone.setOutput("top", true)
  5.       os.sleep(.5)
  6.       redstone.setOutput("top", false)
  7.       os.sleep(.5)
  8.     end
  9.   end
  10.   os.sleep(1)
  11. end
Advertisement
Add Comment
Please, Sign In to add comment