#author("2023-12-30T12:23:17+00:00","default:iseki","iseki") ** Sample LSL for Money Server [#u2f13ff1] *** llGiveMoney [#zba5d8a4] default { state_entry() { llSay(0, "Script running"); llRequestPermissions(llGetOwner(), PERMISSION_DEBIT); } touch_start(integer num) { llSay(0, "Give Money"); llGiveMoney(llDetectedKey(0), 100); } } #br