Trying to change the text colour with Color3 Values

Hi, I want to change text colour using this Color3 Value in ReplicatedStorage:
Color3Value

The value defaults to black.

Here’s the script in ServerScriptService:

local colour = repStorage:FindFirstChild("EggImages"):FindFirstChild("Milk Chocolate Egg"):FindFirstChild("Colour")
		text.TextColor3 = Color3.fromRGB(colour.Value)
		print(text.TextColor3)--Prints: 0, 0, 0

Ask as many questions as you’d like, any help would be appreciated!

When using Color3 value you dont need to use Color3.fromRGB. Just do

text.TextColor3 = colour.Value
1 Like