Advertisement
HolOoD

programm5

Mar 29th, 2024
765
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | Gaming | 0 0
  1. local function Forward(step)
  2.     for i = 1, step do
  3.         turtle.forward()
  4.     end
  5. end
  6.  
  7. Forward(70)
  8. turtle.turnRight()
  9. Forward(28)
  10.  
  11.  
  12. local step = 37
  13. for i = 1, step do
  14.     turtle.digDown()
  15.     turtle.down()
  16. end
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement