Advertisement
kamiakze

Leaves

Jul 19th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.16 KB | None | 0 0
  1. i = 1
  2. while (true) do
  3.     turtle.select(i)
  4.     turtle.place()
  5.     turtle.placeUp()
  6.     i = i + 1
  7.  
  8.     if i == 16 then
  9.         i = 1
  10.     end
  11.    
  12.    
  13.     sleep(0.2)
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement