I want to change the colour of the chatbubble and test for players who are using teamchat, and also for players who are using whisper.
if message.TextChannel.Name == "Team" then
BubbleProperty.TextColor3 = Color3.fromRGB(255, 255, 255)
BubbleProperty.BackgroundColor3 = player.TeamColor.Color
elseif message.TextChannel.Name == "Whisper" then
BubbleProperty.TextColor3 = Color3.fromRGB(255, 255, 255)
BubbleProperty.BackgroundColor3 = Color3.fromRGB(128, 0, 128)
end
this is what i’ve tried, and it doesn’t seem to work
is there also a way i can force whatever message that certain players send to be in TeamChat?