SuperLiteChat - Very easy chat module

SuperLiteChat - Very easy chat module

Free to use clean model, no need to credit me.

Assign a red “VIP” label to a certain player:

	module:AssignLabel(player,"VIP",Color3.new(1,0,0))

*If you need to modify the label of a player, you would need to clear it before reassigning it. Exemple:

	module:AssignLabel(player,"white Label",Color3.new(1,1,1))
	module:ClearLabel(player)
	module:AssignLabel(player,"black Label",Color3.new(0,0,0))

Set a player chat color to red:

	module:SetPlayerChatColor(player,Color3.new(1,0,0))

To set it back to default, just make it back to white.

A full use of it would be:

	local module = nil
	game.Players.PlayerAdded:Connect(function(player)
		if module == nil then
			module = require(script.SuperLiteChat)
		end
	
		module:AssignLabel(player,"Newbie",Color3.new(1,.5,0))
	end)

Which would give this:
image

Don’t forget that this module needs the ChatServiceRunner (added automatically by roblox inside the ServerScriptService), so it would be wiser to not require the module directly at the head of the script since it will yield and will miss the first player that joins. The if statement in it specifically addresses that issue so feel free to use the exact same way of requiring it.

POLL - Will you use this little module? If it gets many yes, I might maybe add much more functionalities to it.

  • I will use it
  • Probably won’t use it

0 voters

5 Likes

This is great!
This should be useful for ranks shown in chat for some ranks and very cool.
Thanks for making this! :smiley:

1 Like

Nice resource! Maybe you could implement some of the features from my old-ish system?

I don’t really care what happens to the source anymore since Roblox devrel literally told me it wasn’t a community resource and unlisted the post.

1 Like

Damn you have a ton of great features (especially the rainbow lol hehe), kinda sad that they unlisted your ressource :neutral_face: But yea maybe i will add some more from your chat+, but the main goal of my ressource is just to add simple labels such as VIP / ranks / player party names and keep it extremely simple to set up

1 Like

Thanks! I get that if you don’t / can’t implement the features for simplicity’s sake.

1 Like

This makes things easier. Man, I’m happy when devs work together. Thank you for the plugin!

2 Likes