Simple Keyboard
//Written By Caboose Enfield, Please dont Erase these Comments/Credits default { state_entry() { llSetTimerEvent(.5); } timer() { if(llGetAgentInfo(llGetOwner())& AGENT_TYPING) { llSetAlpha(1.0,ALL_SIDES); } else { llSetAlpha(0.0,ALL_SIDES); } } }