diff --git a/Assets/Scripts/Cheat/CheatManager.cs b/Assets/Scripts/Cheat/CheatManager.cs
index 2654dce2ce731145dc944f9fa0d263ded886d33b..73aa557f06b6a99cacd51df4f1de601baa2065d9 100644
--- a/Assets/Scripts/Cheat/CheatManager.cs
+++ b/Assets/Scripts/Cheat/CheatManager.cs
@@ -8,6 +8,7 @@ public class CheatManager : MonoBehaviour
     public static CheatManager Instance;
     public PlayerHealth playerHealth;
     public PlayerMovement playerMovement;
+    public PlayerBalance playerBalance;
     public float notificationDuration = 2f;
     public TextMeshProUGUI cheatNotificationText;
 
@@ -82,6 +83,7 @@ public class CheatManager : MonoBehaviour
 
     void ActivateMotherlode()
     {
+        playerBalance.AddBalance(9999);
         ShowNotification("Motherlode Activated!");
     }