Advertisement
munciseek

Untitled

Oct 1st, 2024 (edited)
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. local TextChatService = game:GetService("TextChatService")
  2. local function sendMessages(messages, color)
  3. for _, message in ipairs(messages) do
  4. TextChatService.TextChannels.RBXGeneral:DisplaySystemMessage('<font color="' .. color .. '" face="Oswald"><b>' .. message .. '</b></font>')
  5. end
  6. end
  7.  
  8. local messages = {
  9. {{"Nightmare Mode V2"}, "rgb(255,0,0)"},
  10. {{"Mode By Muhammadgames", "Helper By RegularVynixu & Volta", "Fixer By Munciseek"}, "rgb(255,255,0)"},
  11. {{"Linked To Clients"}, "rgb(0,255,0)"}
  12. }
  13. spawn(function()
  14. for _, msg in ipairs(messages) do
  15. sendMessages(msg[1], msg[2])
  16. wait(3)
  17. end
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement