//************************************************** //* //* Title: Fakefur Script Sound Master Sample //* Make : 2007/08/27 //* Note : Sound Master //* //************************************************** integer SW; default { state_entry() { SW=0; } touch_start(integer total_number) { if (SW==0){ llLoopSoundMaster("loop", 1.0); llSetText("ON",<0,1,0>,1.0); SW=1; }else{ llStopSound(); llSetText("OFF",<1,0,0>,1.0); SW=0; } } }