Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "Kallos Hub TSB", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
- --[[
- Name = <string> - The name of the UI.
- HidePremium = <bool> - Whether or not the user details shows Premium status or not.
- SaveConfig = <bool> - Toggles the config saving in the UI.
- ConfigFolder = <string> - The name of the folder where the configs are saved.
- IntroEnabled = <bool> - Whether or not to show the intro animation.
- IntroText = <string> - Text to show in the intro animation.
- IntroIcon = <string> - URL to the image you want to use in the intro animation.
- Icon = <string> - URL to the image you want displayed on the window.
- CloseCallback = <function> - Function to execute when the window is closed.
- ]]
- local Tab = Window:MakeTab({
- Name = "Movesets",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --[[
- Name = <string> - The name of the tab.
- Icon = <string> - The icon of the tab.
- PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
- ]]
- local Section = Tab:AddSection({
- Name = "@H3nrythegamingaddict is the creator of this hub, not the scripts."
- })
- Tab:AddButton({
- Name = "Jun Moveset (Use Saitama)",
- Callback = function()
- loadstring(game:HttpGet('https://raw.githubusercontent.com/Kenjihin69/Kenjihin69/refs/heads/main/Tp%20exploit%20saitama%20to%20jun'))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "Arcaura Moveset (Use Garou)",
- Callback = function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Reapvitalized/TSB/refs/heads/main/ARCAURA.lua"))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "Sonic Moveset (Use Garou)",
- Callback = function()
- loadstring(game:HttpGet("https://pastebin.com/raw/7V1mUBtQ"))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "Reaper Moveset (Use Metal Bat for Best experience) (Universal)",
- Callback = function()
- -- REAPER V2 moveset
- getgenv().Music = false
- --Setting this to false usually fixes most executors
- --also it helps load time a little bit
- getgenv().AttackQuality = 'High'
- --Set to Low,High
- getgenv().ConstantSpeed = false
- --if you want your speed to be constant
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Reapvitalized/TSB/main/APOPHENIA.lua"))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "Dio Moveset (Use Garou)",
- Callback = function()
- -- DIO moveset
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Medley-Taboritsky/RobloxScripting/refs/heads/main/DIO_Garou_TSB"))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "Sukuna Moveset (Use Atomic)",
- Callback = function()
- -- SUKUNA moveset
- loadstring(game:HttpGet("https://raw.githubusercontent.com/zyrask/Nexus-Base/main/atomic-blademaster%20to%20sukuna"))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "Gojo Moveset (Use Saitama)",
- Callback = function()
- -- GOJO moveset V2.1.2
- loadstring(game:HttpGet("https://raw.githubusercontent.com/skibiditoiletfan2007/BaldyToSorcerer/main/Latest.lua"))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "Deku Moveset (Use Saitama)",
- Callback = function()
- -- DEKU MOVESET
- loadstring(game:HttpGet("https://pastefy.app/MNg2zcxz/raw"))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "Kungfu Panda Moveset (Use Garou)",
- Callback = function()
- -- KUNGFU PANDA
- loadstring(game:HttpGet("https://pastebin.com/raw/DqXUTANt"))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- Tab:AddButton({
- Name = "KJ Moveset (Use Saitama) (Deals no damage)",
- Callback = function()
- -- KJ MOVESET
- loadstring(game:HttpGet("https://pastebin.com/raw/JKKZdLN5"))()
- end
- })
- --[[
- Name = <string> - The name of the button.
- Callback = <function> - The function of the button.
- ]]
- OrionLib:MakeNotification({
- Name = "Kallos Hub Loaded",
- Content = "Thanks for using my hub!",
- Image = "rbxassetid://4483345998",
- Time = 15
- })
- --[[
- Title = <string> - The title of the notification.
- Content = <string> - The content of the notification.
- Image = <string> - The icon of the notification.
- Time = <number> - The duration of the notfication.
- ]]
Advertisement
Advertisement