Advertisement
s3ptum

scrolling txt raphsody

Sep 14th, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. --Yea, It'snot the best way
  2. local mon = peripheral.wrap("back")
  3. local monWidth,monHeight = mon.getSize()
  4. local speed = .2
  5. local pos =1
  6. local yourText = [["Any way the wind blows.
  7.  
  8. Nothing really matters to me.
  9.  
  10. Nothing really matters,
  11.  
  12. Anyone can see,
  13.  
  14. Nothing really matters,
  15.  
  16. (Oh, yeah, oh yeah)
  17.  
  18. Just gotta get out,
  19.  
  20. just gotta get right outta here.
  21.  
  22. Oh, baby, can't do this to me,baby,
  23.  
  24. So you think you can love me
  25.  
  26. and leave me to die?
  27.  
  28. So you think you can stone me and spit in my eye?
  29.  
  30. Beelzebub has a devil put aside for me,
  31.  
  32. for me, for me.
  33.  
  34. (Oh, mama mia, mama mia)
  35.  
  36. Mama mia,
  37.  
  38. let me go.
  39.  
  40. No, no, no, no, no, no, no.
  41.  
  42. (Never, never, never let me go)
  43.  
  44. Ah.(Let me go)
  45.  
  46. Will not let you go.
  47.  
  48. (Let me go)
  49.  
  50. Will not let you go.
  51.  
  52. Bismillah!
  53.  
  54. We will not let you go.
  55.  
  56. (Let him go!)
  57.  
  58. Bismillah!
  59.  
  60. We will not let you go.
  61.  
  62. Bismillah!
  63.  
  64. No, we will not let you go.
  65.  
  66. Easy come, easy go, will you let me go?
  67.  
  68. Spare him his life from this monstrosity.
  69.  
  70. He's just a poor boy from a poor family,
  71.  
  72. I'm just a poor boy and nobody loves me.
  73.  
  74. Magnifico.
  75.  
  76. Galileo Figaro
  77.  
  78. (Galileo)
  79.  
  80. Galileo,
  81.  
  82. (Galileo)
  83.  
  84. Galileo.
  85.  
  86. Very, very frightening me.
  87.  
  88. Thunderbolt and lightning,
  89.  
  90. Scaramouche, Scaramouche,
  91.  
  92. will you do the Fandango?
  93.  
  94. I see a little silhouetto of a man,
  95.  
  96. I sometimes wish I'd never been born at all.
  97.  
  98. I don't wanna die,Mama, ooh
  99.  
  100. (any way the wind blows),
  101.  
  102. Gotta leave you all behind and face the truth.
  103.  
  104. Goodbye, everybody,
  105.  
  106. I've got to go,
  107.  
  108. Body's aching all the time.
  109.  
  110. Sent shivers down my spine,
  111.  
  112. Too late,
  113.  
  114. my time has come,
  115.  
  116. carry on as if nothing really matters.
  117.  
  118. If I'm not back again this time tomorrow,
  119.  
  120. Didn't mean to make you cry,
  121.  
  122.  
  123. life had just begun,
  124.  
  125. Mama,
  126.  
  127. But now I've gone and thrown it all away.
  128.  
  129. Pulled my trigger, now he's dead.
  130.  
  131. Put a gun against his head,
  132.  
  133. just killed a man,
  134.  
  135. Mama,
  136.  
  137. doesn't really matter to me, to me.
  138.  
  139. Any way the wind blows
  140.  
  141. Little high, little low,
  142.  
  143. Because I'm easy come, easy go,
  144.  
  145. I'm just a poor boy,
  146.  
  147. I need no sympathy,
  148.  
  149. Look up to the skies and see,
  150.  
  151. Open your eyes,
  152.  
  153. No escape from reality.
  154.  
  155. Caught in a landslide,
  156.  
  157. Is this just fantasy?
  158.  
  159. Is this the real life?"]]
  160.  
  161. term.redirect(mon)
  162.  
  163. --Main loop
  164. while true do
  165. mon.clear()
  166. mon.setCursorPos((monWidth/2)-(yourText:len()/2),pos)
  167. print(yourText)
  168. sleep(speed)
  169. if pos < monHeight then
  170. pos = pos + 1
  171. else
  172. pos = 1
  173. end
  174. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement