Advertisement
Dojnaz

CC Ender Cycler

Nov 1st, 2020 (edited)
2,438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. local side = "left"
  2.  
  3. while (true) do
  4.   for a = 0,15,1 do
  5.     for b = 0,15,1 do
  6.       for c = 0,15,1 do
  7.         tile = peripheral.wrap(side)
  8.         tile.setColors(math.pow(2, a),math.pow(2, b),math.pow(2, c))
  9.         sleep(1)
  10.       end
  11.     end
  12.   end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement