Changing the color of some words in the text

I want to say how to make this;

Here is my code;

function setText(word)
    Text = word
    for i = 1, #Text do
        TextLabel.Text = string.sub(Text, 1, i)
        SoundEffect()  --another function
        TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
        wait(0.08)
    end
end


wait(2)
setText("Message.")

Thanks.

1 Like

https://www.roblox.com/library/1014847041/Rich-Text-Markup

7 Likes

You can use GUI rich text, however I think the simplest way of doing it is making a separate text label, and having that text be different colors.

2 Likes

For the above replies, I have tested RichText with TypeWriters, and it doesn’t seem to work.

1 Like

Well duh, you’ll need some special code for that

or you can use Defaultio’s module which I linked

2 Likes

the old way of typewriting isn’t compatible with richtext
use the new tween way instead