FreeRobloxScripts1

FE Sing Script (The Spectre)

Sep 22nd, 2023 (edited)
8,149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. -- The Spectre Song (Aka Smurf Cat Song) Haxker_6666666
  2. -- πŸ±πŸ„πŸŸ¦ = ???
  3.  
  4. local lyrics = {
  5. "We live",
  6. "We love",
  7. "We lie",
  8. }
  9.  
  10. -- Chat function
  11. local function singLyrics()
  12. for _, lyric in ipairs(lyrics) do
  13. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(lyric, "All")
  14. wait(1.3) -- Adjust the delay as desired
  15. end
  16. end
  17.  
  18. -- Start singing
  19. singLyrics()
Advertisement
Add Comment
Please, Sign In to add comment