Advertisement
HappySunChild

BeRightBack-OpenComputers

Aug 7th, 2022
784
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. -- just scrolls BE RIGHT BACK across the screen
  2.  
  3. local draw = require("draw")
  4. local color3 = require("color3")
  5. local gpu = draw.gpu
  6.  
  7. local sx,sy = gpu.getResolution()
  8. local my = sy/2
  9.  
  10. local x = sx/2
  11.  
  12. while true do
  13.   gpu.fill(0,my-1,sx+1,3," ")
  14.  
  15.   draw.text(x,my,"Be Right Back",color3.fromRGB(0,0,0),color3.fromRGB(255,255,255))
  16.  
  17.   os.sleep(0.05)
  18.  
  19.   x = (x + 1) % sx
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement