Advertisement
Parg60

cactus

Nov 19th, 2022 (edited)
1,054
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. while true do
  2.     if redstone.getInput("bottom") == true then
  3.         redstone.setOutput("top", true)
  4.         os.sleep(0.05)
  5.         redstone.setOutput("top", false)
  6.         os.sleep(0.05)
  7.     else
  8.         os.sleep(0.5)
  9.     end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement