Advertisement
ProHuilonYTZ

KSI - Thick of it Auto SING (Roblox LUA script)

Nov 16th, 2024
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.81 KB | None | 0 0
  1. -- Access the TextChatService
  2. local TextChatService = game:GetService("TextChatService")
  3.  
  4. -- Function to send chat messages
  5. local function sendMessage(message)
  6.     local speakerChannel = TextChatService:FindFirstChild("TextChannels"):FindFirstChild("RBXGeneral")
  7.     if speakerChannel then
  8.         speakerChannel:SendAsync(message)
  9.     else
  10.         warn("Chat channel not found!")
  11.     end
  12. end
  13.  
  14. -- Function to wait for a random time between 2 and 6 seconds
  15. local function randomWait()
  16.     local waitTime = math.random(2, 6)  -- Random wait time between 2 and 6 seconds
  17.     wait(waitTime)
  18. end
  19.  
  20. -- Start singing directly by sending the lyrics line by line
  21. sendMessage("🎶🎤 I'm in the thick of it, everybody knows 🎤🎶")
  22. randomWait()
  23. sendMessage("🎶🎤 They know me where it snows, I skied in and they froze 🎤🎶")
  24. randomWait()
  25. sendMessage("🎶🎤 I don't know no nothin' 'bout no ice, I'm just cold 🎤🎶")
  26. randomWait()
  27. sendMessage("🎶🎤 Forty somethin' milli' subs or so, I've been told 🎤🎶")
  28. randomWait()
  29. sendMessage("🎶🎤 I'm in my prime and this ain't even final form 🎤🎶")
  30. randomWait()
  31. sendMessage("🎶🎤 They knocked me down, but still, my feet, they find the floor 🎤🎶")
  32. randomWait()
  33. sendMessage("🎶🎤 I went from living rooms straight out to sold-out tours 🎤🎶")
  34. randomWait()
  35. sendMessage("🎶🎤 Life's a fight, but trust, I'm ready for the war 🎤🎶")
  36. randomWait()
  37. sendMessage("🎶🎤 Woah-oh-oh 🎤🎶")
  38. randomWait()
  39. sendMessage("🎶🎤 This is how the story goes 🎤🎶")
  40. randomWait()
  41. sendMessage("🎶🎤 Woah-oh-oh 🎤🎶")
  42. randomWait()
  43. sendMessage("🎶🎤 I guess this is how the story goes 🎤🎶")
  44. randomWait()
  45. sendMessage("🎶🎤 I'm in the thick of it, everybody knows 🎤🎶")
  46. randomWait()
  47. sendMessage("🎶🎤 They know me where it snows, I skied in and they froze 🎤🎶")
  48. randomWait()
  49. sendMessage("🎶🎤 I don't know no nothin' 'bout no ice, I'm just cold 🎤🎶")
  50. randomWait()
  51. sendMessage("🎶🎤 Forty somethin' milli' subs or so, I've been told 🎤🎶")
  52. randomWait()
  53. sendMessage("🎶🎤 Highway to heaven, I'm just cruisin' by my lone' 🎤🎶")
  54. randomWait()
  55. sendMessage("🎶🎤 They cast me out, left me for dead, them people cold 🎤🎶")
  56. randomWait()
  57. sendMessage("🎶🎤 My faith in God, mind in the sun, I'm 'bout to sow (yeah) 🎤🎶")
  58. randomWait()
  59. sendMessage("🎶🎤 My life is hard, I took the wheel, I cracked the code (yeah-yeah, woah-oh-oh) 🎤🎶")
  60. randomWait()
  61. sendMessage("🎶🎤 Ain't nobody gon' save you, man, this life will break you (yeah, woah-oh-oh) 🎤🎶")
  62. randomWait()
  63. sendMessage("🎶🎤 In the thick of it, this is how the story goes 🎤🎶")
  64. randomWait()
  65. sendMessage("🎶🎤 I'm in the thick of it, everybody knows 🎤🎶")
  66. randomWait()
  67. sendMessage("🎶🎤 They know me where it snows, I skied in and they froze 🎤🎶")
  68. randomWait()
  69. sendMessage("🎶🎤 I don't know no nothin' 'bout no ice, I'm just cold 🎤🎶")
  70. randomWait()
  71. sendMessage("🎶🎤 Forty somethin' milli' subs or so, I've been told 🎤🎶")
  72. randomWait()
  73. sendMessage("🎶🎤 I'm in the thick of it, everybody knows (everybody knows) 🎤🎶")
  74. randomWait()
  75. sendMessage("🎶🎤 They know me where it snows, I skied in and they froze (yeah) 🎤🎶")
  76. randomWait()
  77. sendMessage("🎶🎤 I don't know no nothin' 'bout no ice, I'm just cold 🎤🎶")
  78. randomWait()
  79. sendMessage("🎶🎤 Forty somethin' milli' subs or so, I've been told (ooh-ooh) 🎤🎶")
  80. randomWait()
  81. sendMessage("🎶🎤 Woah-oh-oh (nah-nah-nah-nah, ayy, ayy) 🎤🎶")
  82. randomWait()
  83. sendMessage("🎶🎤 This is how the story goes (nah, nah) 🎤🎶")
  84. randomWait()
  85. sendMessage("🎶🎤 Woah-oh-oh 🎤🎶")
  86. randomWait()
  87. sendMessage("🎶🎤 I guess this is how the story goes 🎤🎶")
  88.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement