-->

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.

llRegionSay

default
{
    state_entry()
    {
        llSetText("llRegionSay()\nTouch to say something region wide",<1,1,1>,1);
    }
 
    touch_start(integer total_number)
    {
        llRegionSay(1,"Overall, the fiber produced by a llama is very soft and is naturally lanolin free.");
    }
}

Comments are closed.