Advertisement
Guest User

sorry misstyped

a guest
Nov 17th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.24 KB | None | 0 0
  1. while true do --Will loop forever
  2.   rs.setOutput("left", true) --Set the redstone output to the specified side to true
  3.   sleep(60*5) -- wait 60 seconds
  4.   rs.setOutput("left", false) --Set it to false
  5.   sleep(30) -- sleep for 5 minutes
  6. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement