Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- colorMix = {colors.white, colors.orange, colors.magenta, colors.lime, colors.yellow, colors.lightBlue}
- c = 0
- side = "back"
- local function addcol(col)
- c = colors.combine(col, c)
- rs.setBundledOutput("back", c)
- end
- local function remcol(col)
- c = colors.subtract(col, c)
- rs.setBundledOutput("back", c)
- end
- while true do
- rs.setBundledOutput("back", 0)
- for i = 1,6 do
- addcol(colorMix[i])
- sleep(1)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment