Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Load the UI Library
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- -- Create Main Window
- local Window = Library.CreateLib("TSB Character Hub", "Midnight")
- -- Tabs
- local Tab1 = Window:NewTab("Main")
- local Tab2 = Window:NewTab("Credits")
- -- Sections
- local Tab1Section = Tab1:NewSection("Main")
- local Tab2Section = Tab2:NewSection("Credits")
- -- Scripts Data Table
- local scripts = {
- {name = "Saitama to Mixed Powers", url = "https://pastebin.com/raw/Y3uyGSK6", description = "Switches Saitama's moveset to Mixed Powers"},
- {name = "Saitama to Gojo V1", url = "https://rawscripts.net/raw/The-Strongest-Battlegrounds-Gojo-Moveset-Script-FIX-16704", description = "Switches Saitama's moveset to Gojo V1"},
- {name = "Saitama to Gojo V2", url = "https://pastebin.com/raw/Fz5qGQa2", description = "Switches Saitama's moveset to Gojo V2"},
- {name = "Saitama to Gojo V3", url = "https://pastebin.com/raw/2aDTHUTA", description = "Switches Saitama's moveset to Gojo V3"},
- {name = "Garou to Goku", url = "https://pastebin.com/raw/sB9fiEFu", description = "Switches Garou's moveset to Goku"},
- {name = "Garou to Jotaro", url = "https://raw.githubusercontent.com/h8h88/dfgfdvdf/main/eeeee", description = "Switches Garou's moveset to Jotaro"},
- {name = "Garou to Suiryu", url = "https://gist.githubusercontent.com/kjremaker/b092496fc11a57e2c50477154176fa3e/raw/2148f00a036a1799118541765675f3f6a0f8adae/GAROU%2520TO%2520SURIYU%2520BETTER%2520THAN%2520THE%2520OTHERS%2520FR", description = "Switches Garou's moveset to Suiryu"},
- }
- -- Create Buttons Dynamically
- for _, script in ipairs(scripts) do
- Tab1Section:NewButton(script.name, script.description, function()
- local success, result = pcall(function()
- return loadstring(game:HttpGet(script.url))()
- end)
- if success then
- print(script.name .. " loaded successfully!")
- else
- warn("Failed to load script: " .. script.name .. ". Error: " .. tostring(result))
- end
- end)
- end
- -- Credits Section
- local credits = {
- "Script Hub made by UsuhG",
- "Mixed Powers by NetlessKJ on YT",
- "Gojo V1 made by voidyyy0 on Zenon Discord Server",
- "Gojo V2 and V3 by plumisx on YT",
- "Goku by Alice and emporium",
- "Jotaro by heich00",
- "Suiryu by ???"
- }
- for _, credit in ipairs(credits) do
- Tab2Section:NewLabel(credit)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement