Receiver Error help

Hey all, Im new here still but I am a intermediate programmer so im still learning. Right now I am working on a game and I am using the scripts from the 3rd person shooter project game that was made already with a custom model and animations everything works ok but I am having trouble with this error

SendMessage OnRunFast has no receiver!
UnityEngine.Component:SendMessage(String)
WeaponStateController:Update() (at Assets/Demo Scene Scripts/Player/WeaponStateController.cs:161)

What am I missing? and What does it Mean?

It means that there’s no component with an OnRunFast method attached to the object. Look at the documentation to send message here:

http://unity3d.com/support/documentation/ScriptReference/GameObject.SendMessage.html

  • take note of the options parameter.