Get all Avatars/Scripted Objects Nearbye
//No Idea who wrote this script //dont delet these... integer counter; default { state_entry() { llSay(0, "Hello, Avatar!"); } touch_start(integer total_number) { llSay(0, "Touched."); llSensor("","",ACTIVE | PASSIVE | SCRIPTED | AGENT ,98.0,TWO_PI); } sensor(integer num) { counter = num; while(counter>0) { llOwnerSay("Detected-" + llDetectedName(counter)); counter--; } } }