Color3 shirt / pants help

Hey, so this is just something tiny but I’m currently trying to make a UI where you can customize your avatar in game. You’re able to input hat, clothing, and face IDs and place them on your avatar. Additionally, you’re also able to customize your clothing color with a separate UI that allows you to input the RGB in 3 different text boxes.

For some reason with the clothing color customizer the brightest white is 1,1,1 instead of 255,255,255. I’m changing the Color3 of the clothing.

Ex: Player.Character.Shirt.Color3 = Color3.new(1,1,1)

Can anyone explain why it doesn’t go up to 255 and how I might be able to make it so it does?
I’d greatly appreciate it.

Link to model if you’d like to check it out (WIP) : Avatar Editor - Roblox

You can use Color3.fromRGB(r,g,b) for 255 values.

2 Likes