8 lines
110 B
Bash
8 lines
110 B
Bash
|
|
#!/bin/bash
|
||
|
|
echo "🚀 Starting Tooly Bot..."
|
||
|
|
|
||
|
|
# Install dependencies
|
||
|
|
lit install
|
||
|
|
|
||
|
|
# Run the bot
|
||
|
|
luvit bot.lua
|