Hello Shelley,

Don't worry, you aren't bothering me at all. Your project should contain a player action - it's the action attached to your player model in Wed. Go to that model and get the name attached to it - let's say it's "my_player". Now search the script(s) until you find this action; let's say that it looks like this:

action my_player()
{
....
}

now put the line of code I've told you about inside the action:

action my_player()
{
player = my;
....
}

That's all.