Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- this program will loop forever once triggered
- while true do -- this starts the infinite loop
- redstone.setOutput("bottom", true) -- this sends a redstone signal out the bottom of the computer
- sleep(1) -- this tells it to wait 1 second
- redstone.setOutput("bottom", false) -- this tells it to stop the redstone output
- sleep(5) -- this tells it to wait 5 seconds
- end -- not sure how this works but its necessary for it to loop successfully
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement