Make Part Color same as ImageColor3

I’m wanting to make a part the same color as my ImageLabel. I am using a Color Picker and am wanting to make the color selected the part color but I am not sure how.

My main task is to get my part to be the same color as the ImageLabel.

The Player presses a button and then the current color the ImageLabel is at will be the part color.

Example:

local changeColorButton = path
local imageLabel = path
local part = path + use remote events if you want to change the color on the server

local function onActivated()
   local imageColor = imageLabel.Color -- correct me if it's wrong
   part.Color = imageColor
end

changeColorButton.Activated:Connect(onActivated)

Believe it should be
imageLabel.ImageColor3 ?

Try that I think it’s ImageColor3 as well.

Works just as I needed it to. Thank you very much!

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.