// Name: Roblox Script Loader
// Description: Loads and executes a Roblox script from GitHub
// Author: bonka1
import "@johnlindquist/kit"
const scriptUrl = "https://raw.githubusercontent.com/ZusumeHub/ZusumeHub/refs/heads/main/GAg5"
try {
// Fetch the script content
const response = await get(scriptUrl)
const scriptContent = response.data
// Display the script content in the editor
const result = await editor({
value: scriptContent,
language: "lua",
hint: "Roblox Lua Script Content",
footer: "This script would be executed in Roblox using loadstring()"
})