Create [LP] BLOCKS DELETE BUTTON.lsl

This commit is contained in:
Jessica Pixel
2014-11-17 13:56:37 -05:00
parent e140192ead
commit 5b383de238
+14
View File
@@ -0,0 +1,14 @@
// [LP] BLOCK WALL - BLOCKS DELETE BUTTON
// JESSYKA RICHARD / JESSICA PIXEL
// LIFTEDPIXEL.NET 2014 8 8
integer BlockChannel = 10;
default
{
touch_start(integer total_number)
{
llOwnerSay ( "Deleting blocks..." );
llRegionSay ( BlockChannel, "BLOCKS DELETE" );
}
}