Advertisement
Guest User

text

a guest
Aug 22nd, 2014
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. mon = peripheral.wrap("right")
  2. mon.setTextScale(4)
  3. text = "You WILL Die If Your Not A Member!"
  4. pos = 20
  5. while true do
  6. mon.setTextColor(colors.red)
  7. mon.clear()
  8. mon.setCursorPos(pos, 1)
  9. mon.write(text)
  10. sleep(0.2)
  11. if pos == -21 then
  12. pos = 20
  13. else
  14. pos = pos - 1
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement