Sample LSL for Money Server†[edit]
llGiveMoney†[edit]
default
{
state_entry()
{
llSay(0, "Script running");
llRequestPermissions(llGetOwner(), PERMISSION_DEBIT);
}
touch_start(integer num)
{
llSay(0, "Give Money");
llGiveMoney(llDetectedKey(0), 100);
}
}