FreeRobloxScripts1

FE Sing Script (Waiting For Love)

Jul 4th, 2023 (edited)
12,232
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 1 0
  1. -- Waiting For Love Song By Haxker_6666666
  2. -- πŸ±πŸ‘” = ???
  3.  
  4. local lyrics = {
  5. "Monday left me broken",
  6. "Tuesday, I was through with hoping",
  7. "Wednesday, my empty arms were open",
  8. "Thursday, waiting for l0ve, waiting for l0ve",
  9. }
  10.  
  11. -- Chat function
  12. local function singLyrics()
  13. for _, lyric in ipairs(lyrics) do
  14. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(lyric, "All")
  15. wait(3) -- Adjust the delay as desired
  16. end
  17. end
  18.  
  19. -- Start singing
  20. singLyrics()
  21.  
  22.  
Advertisement
Add Comment
Please, Sign In to add comment