Advertisement
DefeatedPurpose

8ball Script

Jun 30th, 2018
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.99 KB | None | 0 0
  1. --8ball Lua script made by [Certified Weeb]#6917 on discord.
  2.  
  3. --Put the question below
  4.  
  5. local question = "INSERT QUESTION HERE! UR GAY OK HAHA"
  6.  
  7.  
  8. --Variables, Don't Touch...
  9. local EightBall = math.random(1, 19)
  10. local yea1 = "Signs Point to Yes."
  11. local yea2 = "It is Certain."
  12. local yea3 = "My sources say Yes."
  13. local yea4 = "Yes, Definitley."
  14. local yea5 = "It is decidedly so."
  15. local yea6 = "Yes."
  16. local idk1 = "Better not tell you, yet."
  17. local idk2 = "Time will tell."
  18. local idk3 = "First Concentrate then ask again."
  19. local idk4 = "Ask again later."
  20. local idk5 = "Reply hazy... Try again."
  21. local idk6 = "My sources are.... confused. Try again."
  22. local no1 = "Very Doubtful."
  23. local no2 = "Don't count on it."
  24. local no3 = "My sources say no."
  25. local no4 = "Signs point to No."
  26. local no5 = "No, Definitley"
  27. local no6 = "No."
  28.  
  29. --8ball function, Don't touch
  30. if EightBall == 1 then
  31. print('Question Asked : '..question..' ')
  32. print('8ball response : '..yea1..' ') elseif EightBall == 2 then
  33. print('Question Asked : '..question..' ')
  34. print('8ball response : '..yea2..' ') elseif EightBall == 3 then
  35. print('Question Asked : '..question..' ')
  36. print('8ball response : '..yea3..' ') elseif EightBall == 4 then
  37. print('Question Asked : '..question..' ')
  38. print('8ball response : '..yea4..' ') elseif EightBall == 5 then
  39. print('Question Asked : '..question..' ')
  40. print('8ball response : '..yea5..' ') elseif EightBall == 6 then
  41. print('Question Asked : '..question..' ')
  42. print('8ball response : '..yea6..' ') elseif EightBall == 7 then
  43. print('Question Asked : '..question..' ')
  44. print('8ball response : '..idk1..' ') elseif EightBall == 8 then
  45. print('Question Asked : '..question..' ')
  46. print('8ball response : '..idk2..' ') elseif EightBall == 9 then
  47. print('Question Asked : '..question..' ')
  48. print('8ball response : '..idk3..' ') elseif EightBall == 10 then
  49. print('Question Asked : '..question..' ')
  50. print('8ball response : '..idk4..' ') elseif EightBall == 11 then
  51. print('Question Asked : '..question..' ')
  52. print('8ball response : '..idk5..' ') elseif EightBall == 12 then
  53. print('Question Asked : '..question..' ')
  54. print('8ball response : '..idk6..' ') elseif EightBall == 13 then
  55. print('Question Asked : '..question..' ')
  56. print('8ball response : '..no1..' ') elseif EightBall == 14 then
  57. print('Question Asked : '..question..' ')
  58. print('8ball response : '..no2..' ') elseif EightBall == 15 then
  59. print('Question Asked : '..question..' ')
  60. print('8ball response : '..no3..' ') elseif EightBall == 16 then
  61. print('Question Asked : '..question..' ')
  62. print('8ball response : '..no4..' ') elseif EightBall == 17 then
  63. print('Question Asked : '..question..' ')
  64. print('8ball response : '..no5..' ') elseif EightBall == 18 then
  65. print('Question Asked : '..question..' ')
  66. print('8ball response : '..no6..' ') elseif EightBall == 19 then
  67. print('Question Asked : '..question..' ')
  68. print("Wow you got the super rare possibility, the answer is whatever you want it to. LOL Chance of you getting this anger : 1 out of 19")
  69. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement