-->

FoxSan's 3D Tools and LSL Script Repository

Tons of LSL scripts, examples and 3D tools, free for all. There are currently 207 scripts and articles in this database.

llGetCreator

default
{
    state_entry()
    {
        llSetText("llGetCreator test.\nClick to grab creator key.", <1,1,1>, 1.0);
    }
 
    touch_start(integer total_number)
    {
        llSay(0, "Creator: " + (string)llGetCreator());
    }
}

Leave a Reply