Guest User

Bank

a guest
Dec 20th, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. m = peripheral.wrap("back")
  2. up = 5
  3. side = 0
  4.  
  5. while true do
  6.     m.setBackgroundColor(colors.blue)
  7.     m.setTextColor(colors.black)
  8.     m.clear()
  9.     m.setCursorPos(3,1)
  10.     m.write("KEEP CALM AND")
  11.     m.setCursorPos(2,2)
  12.     m.write("GO TO THE")
  13.     m.setCursorPos(1,3)
  14.     m.write("BANK !!!")
  15.     --MOUVEMENT POUR BITCH
  16.     side = math.random(1,10)
  17.     m.setCursorPos(up,side)
  18.     m.write("BITCH")
  19.     sleep(1)
  20. end
Add Comment
Please, Sign In to add comment