local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({Name = "TSB Movesets", HidePremium = false, SaveConfig = true, ConfigFolder = "TSBConfigs"}) local Tab = Window:MakeTab({ Name = "Movesets", Icon = "rbxassetid://4483345998", PremiumOnly = false }) -- Example moveset scripts local movesets = { {name = "Saitama to gojo", scriptUrl = "getgenv().morph = true\nloadstring(game:HttpGet(\"https://raw.githubusercontent.com/skibiditoiletfan2007/BaldyToSorcerer/refs/heads/main/LatestV2.lua\"))()"}, {name = "saitama to gojo #2", scriptUrl = "loadstring(game:HttpGet(\"https://raw.githubusercontent.com/Nova2ezz/jjs-gojo-/refs/heads/main/SaitamaToGojoV3_SOURCE-obfuscated_2.txt\"))()"}, -- Add more movesets here } -- Additional buttons local additionalButtons = { {name = "saitama to kj", scriptUrl = "loadstring(game:HttpGet(\"https://pastefy.app/hAqy68Po/raw\"))()"}, {name = "garou to kj", scriptUrl = "loadstring(game:HttpGet(\"https://raw.githubusercontent.com/damir512/garoukjv1maybeidk/main/Protected_2460290213750059.txt\", true))()"}, {name = "chainsaw man", scriptUrl = "loadstring(game:HttpGet(\"https://gist.githubusercontent.com/GoldenHeads2/0fd8d36993c850f3fac89e5adf793076/raw/ab4f5a42bd0b2e24a32a46301d533ea849ca771c/gistfile1.txt\"))()"}, {name = "yuji", scriptUrl = "loadstring(game:HttpGet(\"https://raw.githubusercontent.com/Onihub-sigma/Onihub-Itadori/refs/heads/main/Itadori%20Onihub%20Public.txt\"))()"}, {name = "jun", scriptUrl = "loadstring(game:HttpGet('https://pastebin.com/raw/vsfSR0Pz'))()"}, {name = "jun2", scriptUrl = "loadstring(game:HttpGet(\"https://raw.githubusercortent.com/h8h88/hubfr/main/hubfr\"))()"}, {name = "kenjihin", scriptUrl = "loadstring(game:HttpGet('https://raw.githubusercontent.com/Kenjihin69/Kenjihin69/refs/heads/main/Tp%20exploit%20saitama%20to%20jun'))()"}, {name = "garou to goku", scriptUrl = "loadstring(game:HttpGet(\"https://rawscripts.net/raw/The-Strongest-Battlegrounds-Hero-hunter-moveset-into-OP-goku-moveset-17468\"))()"}, {name = "garou to sonic", scriptUrl = "loadstring(game:HttpGet(\"https://pastebin.com/raw/7V1mUBtQ\"))()"}, {name = "another moveset hub", scriptUrl = "loadstring(game:HttpGet(\"https://scriptblox.com/raw/Universal-Script-Spectral-Hub-26790\"))()"}, } -- Combining all buttons into a single list for _, moveset in ipairs(movesets) do Tab:AddButton({ Name = moveset.name, Callback = function() loadstring(moveset.scriptUrl)() print(moveset.name .. " script loaded") end }) end for _, button in ipairs(additionalButtons) do Tab:AddButton({ Name = button.name, Callback = function() loadstring(button.scriptUrl)() print(button.name .. " script loaded") end }) end OrionLib:Init()