Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- m=peripheral.wrap("back")
- m.clear()
- m.setTextScale(4.5)
- m.setCursorPos(1,1)
- m.write("Now Playing")
- m.setCursorPos(2,3)
- m.write("STARWARS")
- while true do
- for a=1,11 do
- redstone.setBundledOutput("left", 0)
- if a==1 then
- redstone.setBundledOutput("left", colors.magenta)
- end
- if a==2 then
- redstone.setBundledOutput("left", colors.green)
- end
- if a==3 then
- redstone.setBundledOutput("left", colors.brown)
- end
- if a==4 then
- redstone.setBundledOutput("left", colors.purple)
- end
- if a==5 then
- redstone.setBundledOutput("left", colors.cyan)
- end
- if a==6 then
- redstone.setBundledOutput("left", colors.blue)
- end
- if a==7 then
- redstone.setBundledOutput("left", colors.yellow)
- end
- if a==8 then
- redstone.setBundledOutput("left", colors.lime)
- end
- if a==9 then
- redstone.setBundledOutput("left", colors.pink)
- end
- if a==10 then
- redstone.setBundledOutput("left", colors.gray)
- end
- if a==11 then
- redstone.setBundledOutput("left", colors.red)
- end
- end
- os.sleep(.5)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement