Chat bubble colors modified per player

I’m aware there’s already a couple posts about changing the chat bubbles to one certain color, but what I’m trying to figure out goes a little deeper.

My exploration has taken me to a bit more difficult situation, I’m trying to figure out how to modify the background color of the chat bubbles to where a certain player has a specified color that is replicated to themselves, as well as everyone else in the server (example: special color signifying a game moderator).

I’ve tried using the already posted topics as a reference to see what else I could figure out, but I can only manage to get the color replicated to only that person’s client, instead of everyone else’s. MeepCity uses different chat bubble colors to signify Premium users, and that’s basically what I’m trying to do, but I’m not sure if he’s using a completely different bubble system, or if he modified Roblox’s existing.

1 Like

You’ll have to modify the chat script and download the chat bubble image and change the color. After that, just have local checks on the script to see if the user is a moderator and give them the custom bubble.

I have the whole concept of changing the bubble’s image color working, but it’s the part of having the script know who that bubble belongs to and to make sure the color is the correct one.

The bubble creation has no link to what player it was generated from, so I’m not sure how to go about editing the creation so the script knows what color it should be.

Make a module script in ReplicatedStorage and have it return a table.

return {
  ['LordMerc'] = true,
  ['ROBLOX'] = true
}

That’s really the easiest way.