TextColor3 Text Problem

Hello! So the reason why I posted this post is because of this
problem. Let me tell you what is going on here.

So I want the TextColor3 to be what the text is. (TextBox)
For Example, In the TextBox, I would type: “0,255,0”.

I typed the line of code, played the game, didn’t work, but it showed no error.

clonegui.TextLabel.TextColor3 = Color3.fromRGB(NamedFrame.ColorGenerator.Text)

Any solutions?

There is no overload of Color3.fromRGB that takes a string. If you expect user input numbers to be separated by commas, use string.split, and unpack that:

clonegui.TextLabel.TextColor3 = Color3.fromRGB(
    table.unpack(
        NamedFrame.ColorGenerator.Text:split(",")
    )
)

Let me test this out. Thanks for the information.