Advertisement
Blazuno

Untitled

Apr 28th, 2025
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.24 KB | None | 0 0
  1. local switch = false
  2.  
  3. local function system()
  4.     if switch then
  5.         turtle.dropDown(1)
  6.         sleep(11)
  7.         switch = false
  8.     else
  9.         turtle.drop(1)
  10.         sleep(2)
  11.         switch = true
  12.     end
  13. end
  14.  
  15. system()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement