default { state_entry() { string CommandList = ""; string Creator = llGetObjectDesc(); CommandList = osMovePen( CommandList, 75, 100 ); // change these numbers to move text around CommandList += "FontSize 36;"; // change this number to make font bigger or smaller CommandList = osDrawText( CommandList, Creator ); // Now draw the image osSetDynamicTextureDataBlendFace("", "vector", CommandList, "width:512,height:256", FALSE, 2, 0, 255, 0); } }