-->

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.

Play sound while typing

default
{
    link_message(integer from, integer num, string action, key id)
    {
        if(action == "anim")
        {
            llLoopSound("25365198-05c6-c97b-c849-e5573fe38d92",1);
        }
        if(action == "stop")
        {
            llStopSound();
        }
    }
}

Comments are closed.