// Name: Hoppa Roblox Executor
// Description: A Roblox script executor with Synapse-like interface
// Author: SKYWATSS
// GitHub: SKYWATSS
import "@johnlindquist/kit"
// Create the executor directory structure
const hoppaDir = home('Hoppa')
const scriptsDir = path.join(hoppaDir, 'scripts')
const autoexecDir = path.join(hoppaDir, 'autoexec')
await ensureDir(hoppaDir)
await ensureDir(scriptsDir)
await ensureDir(autoexecDir)
// Default script content
const defaultScript = `-- Hoppa Executor
-- Welcome to Hoppa!
print("Hello from Hoppa!")