Erwd2

Proect red

Jul 8th, 2021 (edited)
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. while true do
  2. SIDE = "top"
  3. if redstone.testBundledInput(SIDE,colors.lime) == true then
  4. redstone.setBundledOutput(SIDE,colors.green)
  5. sleep(2)
  6. end
  7. if redstone.testBundledInput(SIDE,colors.red) == true then
  8. redstone.setBundledOutput(SIDE,colors.pink)
  9. sleep(2)
  10. end
  11. if redstone.testBundledInput(SIDE,colors.black) == true then
  12. redstone.setBundledOutput(SIDE,0)
  13. end
  14. sleep(1)
  15. end
  16.  
Add Comment
Please, Sign In to add comment