vxscripts

Roblox System Messages

Nov 30th, 2025
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.77 KB | Gaming | 0 0
  1. -- this is a local script in starter player > starter character scripts --
  2.  
  3. local tcs = game:GetService("TextChatService")
  4.  
  5. local tag = "[SERVER] " -- change "SERVER" to whatever tag you want it to have
  6. local messages = {
  7.     "hello everyone", -- change these to your messages
  8.     "subscribe to vex",
  9.     "leave a like 👍"
  10. }
  11.  
  12. while wait(5) do --change the 5 to however long you want between each message
  13.     local message = messages[math.random(1, 3)] -- this picks 1 random message. change the last number to however many messages you have
  14.     local redMessage = '<font color="rgb(255,0,0)">' .. tag .. message .. '</font>' -- dont change anything here but the "255,0,0" - you can find other hex code numbers on google
  15.     tcs.TextChannels.RBXGeneral:DisplaySystemMessage(redMessage)
  16. end
Advertisement
Add Comment
Please, Sign In to add comment