Hello Avatar

From Second Life Wiki
Revision as of 23:18, 6 February 2008 by Thraxis Epsilon (talk | contribs) (reverting this back to the March 7th, 2007 revision. It was only intended to be the example of the default LSL script. All other edits should have had a new page.created)
Jump to navigation Jump to search

<lsl> default {

   state_entry()
   {
       llSay(0, "Hello, Avatar!");
   }
   touch_start(integer total_number)
   {
       llSay(0, "Touched.");
   }

} </lsl>