Advertisement
Guest User

mydance

a guest
Mar 30th, 2020
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. --[[
  2. Make the turtle dance!]]
  3.  
  4. print('Time to dance!')
  5.  
  6. --
  7. turtle.forward()
  8. turtle.back()
  9. turtle.turnRight()
  10. turtle.forward()
  11. turtle.back()
  12. turtle.back()
  13. turtle.turnLeft()
  14. turtle.turnLeft()
  15. turtle.back()
  16. turtle.turnRight()
  17.  
  18. --
  19. for i = 1, 4 do
  20.   turtle.turnRight()
  21. end
  22.  
  23. turtle.up()
  24. turtle.down()
  25. print('Done.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement