Amorenna Posted July 28, 2019 Share Posted July 28, 2019 Hi all, I'm looking for a script (?) for floating text above head. "___ # of people want to ___" that sort of thing, that another user can click and it adds to the number. Any suggestions would be great, as I can't find one for the life of me. Thank you Link to comment Share on other sites More sharing options...
RaeLeeH Posted July 29, 2019 Share Posted July 29, 2019 Not sure it's exactly what you're after but maybe something like this with a little editing? // Touch Me Plea script [KMLT-Touch Me Plea]// - Author.: KarenMichelle Lane// - Company: KM Love Things// - Freely Donated into the Public Domain//vector color = <1.0, 1.0, 1.0>;string default_text = "Hello, I'm just here waiting to be touched!";string text;integer count=0;default{ state_entry() { text = default_text; llSetText(text, color, 1.5); } touch_end(integer number) { count = count + 1; text = "Oh My! I've been touched " + (string)count + " times. Do it again please."; llSetText(text, color, 1.5); }} Link to comment Share on other sites More sharing options...
Recommended Posts
Please take a moment to consider if this thread is worth bumping.
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now