Advertisement
rungholt

doStuffUserInput

Feb 19th, 2021
1,081
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. local times = 0
  2. print("Hello! How many times to run?: ")
  3. times = read()
  4.   for i = 1, times do
  5.     turtle.dig()
  6.     turtle.forward()
  7.     turtle.digUp()
  8.     turtle.up()
  9.     turtle.digUp()
  10.     turtle.up()
  11.     turtle.digUp()
  12.     turtle.down()
  13.     turtle.down()
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement