-
What do you want to achieve?
I want to convert a RGB value to a Color3 value by using Color3.fromRGB. -
What is the issue?
The color turns black, I’m assuming its because the numbers are too high and it is ignoring the .fromRGB. -
What solutions have you tried so far?
I have looked on the Developer Forum.
Module script that’s storing the color
RankColor = Color3.fromRGB(255,0,0), -- rank of this color (in RGB)
Script that “converts” it from RGB to Color3
announcement.userRank.TextColor3 = Color3.fromRGB(rankModule[plrRank].RankColor)