ASRS_

CC Bar Drawer

May 19th, 2023
1,001
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | Gaming | 0 0
  1. local m = peripheral.wrap("back")
  2. m.clear()
  3. m.setTextColor(colors.red)
  4. w, h = m.getSize()
  5. while true do
  6.     for y = 1, h, 1 do
  7.         m.setCursorPos(1, y)
  8.         m.clearLine()
  9.         randomx = math.random(1, w)
  10.         print(randomx)
  11.         for x=1, randomx, 1 do
  12.             m.setCursorPos(x, y)
  13.             m.write("=")
  14.         end
  15.         sleep(0.00001)
  16.     end
  17. end
  18.  
Advertisement
Add Comment
Please, Sign In to add comment