Transparency of objects.

Is there a way to set the transparency of objects through scripting? My character is able to pick up objects, and I would like those objects to become transparent when they are picked up.

Try changing the alpha of the color of the material of the renderer ?

renderer.material.color.a = 0.5;

You also need a transparent material attached to your objects to use the above line.