#!/bin/bash RED='\033[0;31m' GREEN='\033[0;32m' YELLOW='\033[1;33m' BLUE='\033[0;34m' PURPLE='\033[0;35m' CYAN='\033[0;36m' WHITE='\033[1;37m' RESET='\033[0m' typing_effect() { local text="$1" local color="$2" echo -ne "${color}" for (( i=0; i<${#text}; i++ )); do echo -n "${text:$i:1}" sleep 0.05 done echo -e "${RESET}" } clear echo -e "${BLUE}======================================================${RESET}" typing_effect " Tools Auto Install Panel" "${CYAN}" typing_effect " by maulana" "${PURPLE}" echo -e "${BLUE}======================================================${RESET}" echo -e "\n${YELLOW}Pilih command untuk dijalankan:${RESET}" typing_effect " 1) 🚀 Install Panel dan Buat Node" "${WHITE}" typing_effect " 2) 🪽 Install Wings" "${WHITE}" typing_effect " 3) 👤 Add Admin Panel" "${WHITE}" typing_effect " 4) ❌ Keluar" "${RED}" echo -n -e "\n${GREEN}Masukkan pilihan [1-4]: ${RESET}" read choice case $choice in 1) bash <(curl -sL https://ptero.hellix.my.id/install) ;; 2) bash <(curl -sL https://ptero.hellix.my.id/wings) ;; 3) bash <(curl -sL https://ptero.hellix.my.id/user) ;; 4) typing_effect "Sampai jumpa!" "${YELLOW}"; exit 0 ;; *) echo "Pilihan salah!"; exit 1 ;; esac