mirror of
https://github.com/liftedpixel/lslscripts.git
synced 2026-08-14 09:02:50 +00:00
13 lines
255 B
Plaintext
13 lines
255 B
Plaintext
string message = "xxxxx"; // What text to set
|
|
vector color = < 0, 0, 1 >; // The text color
|
|
float alpha = 0.7; // How transparent the text is
|
|
|
|
default
|
|
{
|
|
state_entry()
|
|
{
|
|
// Set the text
|
|
llSetText( message , color , alpha );
|
|
}
|
|
}
|