How do I use ChatSettings.BackGroundColor?
Hello, I have a quite odd question as I've been trying to manipulate ROBLOX's chat settings and customize it. I've tried this way which for an odd reason doesn't have any errors.
In basic sense I'm trying to change the background color of the chat area, I tried to change the text instead which I ultimately failed in the same way.
ServerScript in ServerScriptService
01 | local Players = game:GetService( "Players" ) |
02 | local ChatService = game:GetService( "Chat" ) |
03 | local ClientChatModules = ChatService:WaitForChild( "ClientChatModules" ) |
04 | local ChatSettings = require(ClientChatModules:WaitForChild( "ChatSettings" )) |
12 | Players.PlayerAdded:Connect( function (plr) |
13 | plr.Chatted:connect( function (msg) |
14 | if not whitelist [ plr.UserId ] then |
15 | ChatSettings.BackGroundColor = Color 3. new( 1 , 1 , 1 ) |
17 | ChatSettings.BackGroundColor = Color 3. new( 255 , 255 , 0 ) |