Advertisement
Guest User

MoveMent

a guest
Apr 21st, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.15 KB | None | 0 0
  1. local t = turtle
  2. local Move = function()
  3.   t.up()
  4.   t.turnLeft()
  5.   t.forward()
  6.   t.turnLeft()
  7.   t.down()
  8. end
  9.  
  10. for i=1,5 do
  11.   Move()
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement