//Jimmy Vegas Unity Tutorial //This script is for the sword blocker public class AttackBlocker : MonoBehaviour { public static int BlockSword; public int InternalBlock; void Update () { InternalBlock = BlockSword; } }