#!/bin/bash

clear
echo 'Tool Packs Installer'
echo -n '
Tool Packs
1 - Tool-X
2 - Fsociety
3 - Lazymux
4 - ALL
0 - Exit
'
read scr
case $scr in

1)
clear
echo 'Installing Tool-X...'
git clone https://github.com/rajkumardusad/Tool-X.git
cd Tool-X
chmod +x install
./install
echo 'Done'
read -n1
clear
./tpi
;;

2)
clear
echo 'Installing Fsociety...'
bash <(wget -qO- https://git.io/vAtmB)
echo 'Done.'
read -n1
clear
./tpi
;;

3)
clear
echo 'Installing Lazymux...'
git clone https://github.com/Gameye98/Lazymux
cd Lazymux
python lazymux.py
echo 'Done.'
read -n1
clear
./tpi
;;

4)
clear
echo 'Installing ALL tool packs...'
echo 'Installing Tool-X...'
git clone https://github.com/rajkumardusad/Tool-X.git
cd Tool-X
chmod +x install
./install
echo 'Installing Fsociety...'
bash <(wget -qO- https://git.io/vAtmB)
echo 'Installing Lazymux...'
git clone https://github.com/Gameye98/Lazymux
cd Lazymux
python lazymux.py
echo 'Done.'
read -n1
clear
./tpi
;;

0)
clear
exit
;;

*)
clear
echo "Invalid input" 
./tpi
;;
esac
