Advertisement
Familycade

Untitled

Nov 26th, 2024
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. -- Load the UI Library
  2. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  3.  
  4. -- Create Main Window
  5. local Window = Library.CreateLib("TSB Character Hub", "Midnight")
  6.  
  7. -- Tabs
  8. local Tab1 = Window:NewTab("Main")
  9. local Tab2 = Window:NewTab("Credits")
  10.  
  11. -- Sections
  12. local Tab1Section = Tab1:NewSection("Main")
  13. local Tab2Section = Tab2:NewSection("Credits")
  14.  
  15. -- Scripts Data Table
  16. local scripts = {
  17. {name = "Saitama to Mixed Powers", url = "https://pastebin.com/raw/Y3uyGSK6", description = "Switches Saitama's moveset to Mixed Powers"},
  18. {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"},
  19. {name = "Saitama to Gojo V2", url = "https://pastebin.com/raw/Fz5qGQa2", description = "Switches Saitama's moveset to Gojo V2"},
  20. {name = "Saitama to Gojo V3", url = "https://pastebin.com/raw/2aDTHUTA", description = "Switches Saitama's moveset to Gojo V3"},
  21. {name = "Garou to Goku", url = "https://pastebin.com/raw/sB9fiEFu", description = "Switches Garou's moveset to Goku"},
  22. {name = "Garou to Jotaro", url = "https://raw.githubusercontent.com/h8h88/dfgfdvdf/main/eeeee", description = "Switches Garou's moveset to Jotaro"},
  23. {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"},
  24. }
  25.  
  26. -- Create Buttons Dynamically
  27. for _, script in ipairs(scripts) do
  28. Tab1Section:NewButton(script.name, script.description, function()
  29. local success, result = pcall(function()
  30. return loadstring(game:HttpGet(script.url))()
  31. end)
  32. if success then
  33. print(script.name .. " loaded successfully!")
  34. else
  35. warn("Failed to load script: " .. script.name .. ". Error: " .. tostring(result))
  36. end
  37. end)
  38. end
  39.  
  40. -- Credits Section
  41. local credits = {
  42. "Script Hub made by UsuhG",
  43. "Mixed Powers by NetlessKJ on YT",
  44. "Gojo V1 made by voidyyy0 on Zenon Discord Server",
  45. "Gojo V2 and V3 by plumisx on YT",
  46. "Goku by Alice and emporium",
  47. "Jotaro by heich00",
  48. "Suiryu by ???"
  49. }
  50.  
  51. for _, credit in ipairs(credits) do
  52. Tab2Section:NewLabel(credit)
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement