Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is it possible to make the dialog color white / invisible?

Asked by 5 years ago

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[""])
0
fuk u r1gj 4 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

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!

Ad

Answer this question