FreeRobloxScripts1

FE Sing Script (Super Idol)

Jun 9th, 2023
18,787
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. -- Super Idol Song By Haxker_6666666
  2.  
  3. local lyrics = {
  4. "Super Idol的笑容 都没你的甜",
  5. "八月正午的阳光 都没你耀眼",
  6. "热爱105度的你 滴滴清纯的蒸馏水",
  7. }
  8.  
  9. -- Chat function
  10. local function singLyrics()
  11. for _, lyric in ipairs(lyrics) do
  12. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(lyric, "All")
  13. wait(3) -- Adjust the delay as desired
  14. end
  15. end
  16.  
  17. -- Start singing
  18. singLyrics()
  19.  
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment