Advertisement
Guest User

startup.lua

a guest
Nov 19th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement