Picture upload to portraits

Hello unity community, cobalt60 hear and I am wanting to make a art gallery were the players can upload their own photos to a picture frame. there will already be frames up with a cube behind the frame. I was just thinking that it would be neat if the player could choose the frame he wanted to place the picture. I would script this but it is like looking at 00101001100011101 as a language. Thank you for all the help you can provide.

If you’re really allergic to coding, we won’t be able to do much. But I can which way to look :

Inside your frame, there will be a plane. The way that plane is displayed depends of its material. The easiest will be to use the default one (Diffuse). If you want to display an image over it, you need to change its variable called _MainTexture, by giving it a Texture. So, inside a script, you need a Texture variable, and then affect it that way :

plane.renderer.material.SetTexture( "_MainTexture", texture );