Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.32 KB | None | 0 0
  1. local m=peripheral.wrap("right")
  2. local text = {"K K K Fine",
  3. "Sicker than your average nigger killer",
  4. "Twist niggers heads off",
  5. "Niggers fucking stink niggers and gayers",
  6. "Chicken wing eating players",
  7. "Triple K hooligans like Moon Man",
  8. "Dead right if they head right",
  9. "Fucking your mom every night",
  10. "Moon mans been smooth since days of killing jews",
  11. "Never lose",
  12. "Never choose to lynch jews who do something to us",
  13.  
  14. "Talk go through us your mom walked to us",
  15. "Get on a rape bus; screw us, screw us",
  16. "Yeah, KKK, nigger babies i dont give a fuck",
  17. "Stick it up the butt",
  18.  
  19. "Dare I not see at your ripe cherry pussy",
  20. "Bang every porch monkey easily, busily",
  21. "Recently niggers fronting aint saying nothing",
  22. "My cock nigger",
  23. "Suck it, Triple K mafia, were on it",
  24.  
  25. "Moon man, Moon man, cant you see",
  26. "Spics and niggers need to hang from trees",
  27. "And I just love your racist ways",
  28. "I guess thats why their mom is black and youre so great",
  29.  
  30. "I put niggers underground without a sound",
  31. "You minorities cant step to me",
  32. "All spics need to go back to Mexico",
  33. "Never to be stealing money from you and me",
  34.  
  35. "Now whos the real dookie",
  36. "All you niggers smell like shit",
  37. "You niggers can ride my dick",
  38. "Spear chuckers pushing up sticks",
  39. "Ooga booga, go back to Africa",
  40.  
  41. "I dont know why I hate blacks",
  42. "Oh yeah, its because they look",
  43. "And smell like ass",
  44.  
  45. "Quit throwing your chicken bones on the sidewalk",
  46. "Spics need to learn some English talk",
  47.  
  48. "I dont give a fuck about your mama",
  49. "Jizzing on her face aint no drama",
  50. "Its probably different than the nigger cock shes used to",
  51. "Kill a nigger and skullfuck a jew",
  52.  
  53. "Moon man, Moon man, cant you see",
  54. "Spics and niggers need to hang from trees",
  55. "And I just love your racist ways",
  56. "I guess thats why their mom is black and youre so great",
  57.  
  58. "Everything you be saying is offensive to me",
  59. "As a proud African American I would have used my right to free speech",
  60. "Moon Man you need to stop the hate",
  61. "After all we are one universal race",
  62.  
  63. "Fuck off nigger",
  64. "I dont give a fuck about people of other colors",
  65. "Get the fuck out you aint my brother",
  66. "Why dont you go and fuck a hyena",
  67. "When its dark outside I cant even see ya",
  68.  
  69. "Moon man, Moon man, cant you see",
  70. "Spics and niggers need to hang from trees",
  71. "And I just love your racist ways",
  72. "I guess thats why their mom is black and youre so great",
  73.  
  74. "This is Moon man here telling you niggers to take a long walk off a short pier",
  75. "Vote 5, faggots, and Im out of here"}
  76. m.setTextScale(.5)
  77. local i = 1
  78. local sizex,sizey = m.getSize()
  79. local posx = sizex/2
  80. local posy = sizey/2
  81. while true do
  82.     m.setCursorPos(0,0)
  83.     term.clear()
  84.     local t = text[i]
  85.     if string.len(t) > sizex then
  86.         -- find next space
  87.         local space=0
  88.         for j=sizex, 1, -1 do
  89.             if string.sub(t,j,j) == ' ' then
  90.                 space=j
  91.                 break
  92.             end
  93.         end
  94.         if space ~= 0 then
  95.             -- first part
  96.             local t1 = string.sub(t,1,space-1)
  97.             m.setCursorPos(posx-string.len(t1)/2,posy)
  98.             m.write(t1)
  99.            
  100.             -- second part
  101.             local t2 = string.sub(t,space+1,string.len(t))
  102.             m.setCursorPos(posx-string.len(t2)/2,posy+1)
  103.             m.write(t2)
  104.         end
  105.     else
  106.         m.setCursorPos(posx-string.len(text[i])/2,posy)
  107.         m.write(t)
  108.     end
  109.    
  110.     os.sleep(.75)
  111.    
  112.     i=i+1
  113.     if (i>#text) then
  114.         i=1
  115.         term.clear()
  116.         os.sleep(1)
  117.     end
  118. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement