How can I change how the chat box looks?

How can I change how the chat box looks?

Hey , this post might answer your question : Customize Chatbox

local Game = game
local Players = Game:GetService("Players")
local Player = Players.LocalPlayer
local PlayerGui = Player:WaitForChild("PlayerGui")
local ChatGui = PlayerGui:WaitForChild("Chat")
local ChatFrame = ChatGui:WaitForChild("Frame")
local ChatBarFrame = ChatFrame:WaitForChild("ChatBarParentFrame")
local OuterFrame = ChatBarFrame:WaitForChild("Frame")
local ChatBoxFrame = OuterFrame:WaitForChild("BoxFrame")
local InnerFrame = ChatBoxFrame:WaitForChild("Frame") --Modify the children of this instance.
local TextLabel = InnerFrame:WaitForChild("TextLabel")
TextLabel.Text = "Hello world!"

image
image

‘ChatBar’, ‘MessageMode’ and ‘TextLabel’ are the instances you’re looking to modify.

2 Likes