You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? I want you to teach me how to turn Color3.new to Color3.fromRGB
What is the issue? Color.fromRGB turns into Color.new
What solutions have you tried so far? Yes
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
Color3.fromRGB takes the red, green and blue components as values between 0 and 255,
while Color3.new takes the red, green and blue components as values between 0 and 1.
To turn .new() components into .fromRGB() components, multiply them by 255. Likewise, to go from .fromRGB() values to .new() values, simply divide by 255.
Ok, in the new image you attached, it is showing the Color3 object values.
.new and .fromRGB both create the Color3 object, so they are just 2 means of getting to the goal. You don’t need to change anything in your code - all the colors in the output are the same as they are in the fromRGB table you provided.
From rgb just takes inputs from 255 but internally scales them down into numbers from 0 - 1. 255 is the same as 255/255 which is 1 leading it to be the same as regular Color3 values.