├── .replit ├── README.md └── main.py /.replit: -------------------------------------------------------------------------------- 1 | language = "python3" 2 | run = "python3 main.py" 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Welcome 🥳 2 | 3 | EZFN.DEV is a free Fortnite Lobbybot which allows you to see all Fortnite cosmetics. 4 | 5 | ## Get Help 6 | [Join my Discord](https://ezfn.dev/discord) 7 | 8 | If you see this on github.com, visit [my website](https://ezfn.dev)... 9 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import os, sys 2 | sys.stderr = None 3 | print('\033[94mInstalling packages, please wait...') 4 | os.system('pip install -U EZFNSetup >/dev/null 2>&1') 5 | print('Installed the packages!\033[0m') 6 | import EZFNSetup 7 | --------------------------------------------------------------------------------