Guest User

startup.lua

a guest
Mar 30th, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. local function main()
  2.     for i=1,16 do
  3.         turtle.select(i)
  4.         turtle.dropDown(1)
  5.         --os.sleep(1)
  6.     end
  7. end
  8.  
  9. while true do
  10.     if rs.getInput("left") then
  11.         main()
  12.     end
  13.     sleep(.1)
  14. end
Add Comment
Please, Sign In to add comment