As it seems right now, you have just copied and pasted the script the chaser gave you.
What he gave you, is not going going to help, unless you change some stuff.
This one won't do anything
void ToNormality (string &in...)
{
ChangePlayerStateToNormal();
}
unless we change some stuff around.
void ToNormality (string &in asParent, string &in asChild, int alState)
{
SetPlayerSanity(100);
SetPlayerHealth(100);
FadeImageTrailTo(0.0f, 1f);
FadeRadialBlurTo(0.0f, 1f);
FadePlayerFOVMulTo(1.0f, 0.5f);
FadePlayerAspectMulTo(1.0f, 0.2f);
}
I'm not sure about how ChangePlayerStateToNormal works, but it'll be much easier for yourself, if you use this, because you know what's actually going on.
Trying is the first step to success.