I have a script that makes you talk but I tried changing the color to ""
There is only red, green and blue but nothing else. Is it possible to make the color invisible / white ?
game.Chat:Chat(game.Players.LocalPlayer.Character.Head,"YO",Enum.ChatColor[""])
Actually there is a white dialog color.
Try this:
local ChatService = game:GetService('ChatService') local plr = game.Players.LocalPlayer local Char = plr.Character or plr.CharacterAdded:Wait() ChatService:Chat(Char.Head, 'Yo', Enum.ChatColor.White)
This might be what you are looking for.
Hopefully, this helped.
You can read more on ChatService and Chat here: http://wiki.roblox.com/index.php?title=API:Class/Chat/Chat https://wiki.roblox.com/index.php?title=API:Enum/ChatColor
Best of luck developer!