Color change is wrong

Hi,
I want change my custom 3d model’s color to red. (“fbx model”)
but, it always changed black.
and I don’t know why it keeps changing black color.

this is my 3d model’s texture
image

and this is my color change code.
thank you.

onClick Function(){
let _object = intersects[0].object;
let cloned = _object.material.clone();
_object.material = cloned;
_object.material.color.set(0xff0015);
}

Can you please share your code as a live example? Right now, you have shared not enough information to properly investigate the issue.