karelvysinka

Redstone timer TURTLE

Aug 21st, 2021 (edited)
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.16 KB | None | 0 0
  1. a=0
  2. while true do
  3.  
  4.     redstone.setOutput("front",true)
  5.     sleep(0.3)
  6.     redstone.setOutput("front",false)
  7.     sleep(0.3)    
  8.     a=a+1
  9.     print(a)
  10. end
Add Comment
Please, Sign In to add comment