// Name: Roblox Loadstring Helper // Description: Copies or pastes the provided Roblox loadstring and can open the raw script URL. // Author: wdbeatzttv-cloud // GitHub: wdbeatzttv-cloud import "@johnlindquist/kit" const url = "https://raw.githubusercontent.com/Nghia11n/Banana-Hub/main/bananahub.lua" const snippet = `loadstring(game:HttpGet("${url}"))()` const action = await arg("Choose an action", [ { name: "Copy loadstring to clipboard", value: "copy" }, { name: "Paste loadstring into active app", value: "paste" }, { name: "Open raw script URL in browser", value: "open" }, ]) if (action === "copy") { await copy(snippet) await notify("Loadstring copied to clipboard") } else if (action === "paste") { await setSelectedText(snippet) await notify("Loadstring pasted into the active app") } else if (action === "open") { await browse(url) await notify("Opened raw script URL in your browser") }