ID:149712
 
i need a simple snippet on a verb that is able to create objs from icons on a players hard drive
mob/verb/Build(I as icon)
var/obj/O
O = new/obj/myobj(usr.loc)
O.icon = I

Try that, it might work.
Note you have to change new/obj/myobj to the obj you want created.