I'm trying too make this script too work so if someone wants to change the speed of the bullet they can. I want it to be voice command like I have showing do there. I just don't know how to make it so it will change the speed numbers. How would I go about doing this?
Thanks for reading my post. Also thanks for helping me

CODE
float speed = ;
default
{
on_rez(integer n)
{
llResetScript();
}
state_entry()
{
llListen(0,"",llGetOwner(),"");
llListen(25,"",llGetOwner(),"");
}
listen( integer channel, string name, key id, string message )
{
if( message == "" )
{
}
}
}
