A small python script that gives you unlimited battery time in Five Night at Freddy's: Security Breach. It works by writing directly into the game's memory, and resetting the battery countdown timer every five seconds. This is a cheat software, so please only use it after you've already finished the game's main storyline, and fully upgraded your Freddy!
The latest release can be downloaded HERE. There's no need to install anything, just run the executable file.
If you do not trust the .exe file, you can also use the python script directly ("Manual Installation" section).
The executable file provided in the Releases section works out of the box. However, if you don't feel comfortable downloading and running a random exe you found on the internet, you can also download the source code itself, and run it directly with python. Here's how you do it:
- Make sure that Python 3 is installed on your computer
- Open a terminal (press
Win+R
, typecmd
, enter) - Navigate to a directory where you would like to download the script (e.g.
cd C:\Users\Sparky\Downloads
) - Clone this repo:
git clone https://github.com/SparkyTD/infinite-freddy-time
- Navigate to the downloaded directory:
cd infinite-freddy-time
- Install the dependency:
pip install -r requirements.txt
- Run the script:
python main.py
- You can launch the game before, or after you run the script, it doesn't matter.
Using the script is very easy. Just launch the game and run the script. You can also launch the script first, and then the game, the order doesn't matter. As long as the script is running in the background, Freddy's battery will never deplete. When you're done playing, hit Ctrl+C
in the script's command window to close it.
Please don't hesitate to open a new Issue in the Issues tab. Make sure to include as much information as you can about the problem, so it can be fixed faster (Screenshot, Windows version, 64bit or 32bit, Game version, etc...).
The released executable file is a bundled python script that was made with pyinstaller. Unfortunately there are lots of malwares that use a similar type of packaging, which may cause some antivirus programs to think that this is a virus. To make it even worse, this script works by directly modifying the game's memory, which can also raise some red flags in antivirus softwares.
This script is completely harmless, it only does what's described on this page, and nothing else. Feel free to inspect the source code, and use the manual installation method if you don't want to run the released executable.
The script works by accessing the game's main memory region at offset "fnaf9-Win64-Shipping.exe"+0x0441B738
, and following a set of pointers (0x8 -> 0x10 -> 0x38 -> 0xB8
) to find the uint32 variable that stores Freddy's battery duration in seconds. This number starts from 100 when Freddy gets out of a charging station, and slowly counts down to 0. This script resets this counter to 100 every five seconds.
Do whatever you want with this script, but if you want to modify and/or redistribute it, please include a link to this github page!