Advertisement
HangMan23

Untitled

Feb 9th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. local gpu = require("component").gpu
  2. local EU = require("ExtraUtilits")
  3.  
  4. local function main()
  5.  
  6. color = 0x000000
  7.  
  8. repeat
  9.  
  10. gpu.setBackground(color)
  11. gpu.setForeground(0xffffff - color)
  12. gpu.fill(68, 22, 24, 5, " ")
  13. gpu.set(69, 24, "Calhoz Inc Tehnologies")
  14. gpu.set(68, 26, "2019")
  15. color = color + 0x111111
  16. os.sleep(0.1)
  17.  
  18. until color == 0xffffff
  19.  
  20. os.sleep(1)
  21.  
  22. end
  23.  
  24. EU.screenBackup(main)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement