Advertisement
DrakrMakr

Stand Sim

Aug 24th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. plr = game:GetService("Players").LocalPlayer
  2. mouse = plr:GetMouse()
  3. print("Press F to generate a Stand name;Rarest ones are Platinum Heaven, Killer Refreshments, Platinum Lemonade.")
  4. local line1
  5. local line2
  6. mouse.KeyDown:connect(function(k)
  7. if k == "f" then
  8. c = math.random(1, 9)
  9. if c == 1 then
  10. line1 = "Refresh"
  11. end
  12. if c == 2 then
  13. line1 = "Lovin"
  14. end
  15. if c == 3 then
  16. line1 = "Cool"
  17. end
  18. if c == 4 then
  19. line1 = "Platinum"
  20. end
  21. if c == 5 then
  22. line1 = "Killer"
  23. end
  24. if c == 6 then
  25. line1 = "Funtime"
  26. end
  27. if c == 7 then
  28. line1 = "Cool-down"
  29. end
  30. if c == 8 then
  31. line1 = "Funky"
  32. end
  33. if c == 9 then
  34. line1 = "Ice-cool"
  35. end
  36. c = math.random(1, 9)
  37. if c == 1 then
  38. line2 = "Heaven"
  39. end
  40. if c == 2 then
  41. line2 = "Lemonade"
  42. end
  43. if c == 3 then
  44. line2 = "Fun!"
  45. end
  46. if c == 4 then
  47. line2 = "Story"
  48. end
  49. if c == 5 then
  50. line2 = "Squeeze"
  51. end
  52. if c == 6 then
  53. line2 = "Refreshment"
  54. end
  55. if c == 7 then
  56. line2 = "Sodas"
  57. end
  58. if c == 8 then
  59. line2 = "Keeps"
  60. end
  61. if c == 9 then
  62. line2 = "Keepers"
  63. end
  64. print(line1.." "..line2)
  65. end
  66. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement