Andrew19282_44

Bid

Apr 21st, 2025
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.99 KB | None | 0 0
  1. --// Stylish TSB Script Hub by baller_689032
  2.  
  3. local Players = game:GetService("Players") local plr = Players.LocalPlayer
  4.  
  5. local ScreenGui = Instance.new("ScreenGui", plr:WaitForChild("PlayerGui")) ScreenGui.Name = "StylishTSBHub"
  6.  
  7. local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 600, 0, 400) Frame.Position = UDim2.new(0.25, 0, 0.25, 0) Frame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) Frame.BorderSizePixel = 0 Frame.BackgroundTransparency = 0.05 Frame.Active = true Frame.Draggable = true Frame.Parent = ScreenGui
  8.  
  9. local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 15) UICorner.Parent = Frame
  10.  
  11. local Title = Instance.new("TextLabel") Title.Parent = Frame Title.Size = UDim2.new(1, 0, 0, 40) Title.BackgroundTransparency = 1 Title.Text = "Andrews TSB Script Hub" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Font = Enum.Font.GothamBold Title.TextSize = 24
  12.  
  13. local TabButtons = Instance.new("Frame") TabButtons.Size = UDim2.new(1, 0, 0, 40) TabButtons.Position = UDim2.new(0, 0, 0, 40) TabButtons.BackgroundTransparency = 1 TabButtons.Parent = Frame
  14.  
  15. local Tabs = {} local Pages = {} local CurrentTab = nil
  16.  
  17. local function CreateTab(name) local btn = Instance.new("TextButton") btn.Size = UDim2.new(0, 100, 1, 0) btn.Text = name btn.BackgroundColor3 = Color3.fromRGB(35, 35, 35) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.Gotham btn.TextSize = 14 btn.Parent = TabButtons
  18.  
  19. local page = Instance.new("Frame")
  20. page.Size = UDim2.new(1, 0, 1, -80)
  21. page.Position = UDim2.new(0, 0, 0, 80)
  22. page.BackgroundTransparency = 1
  23. page.Visible = false
  24. page.Parent = Frame
  25.  
  26. local layout = Instance.new("UIListLayout")
  27. layout.Padding = UDim.new(0, 5)
  28. layout.SortOrder = Enum.SortOrder.LayoutOrder
  29. layout.Parent = page
  30.  
  31. btn.MouseButton1Click:Connect(function()
  32. if CurrentTab then Pages[CurrentTab].Visible = false end
  33. CurrentTab = name
  34. Pages[CurrentTab].Visible = true
  35. end)
  36.  
  37. Tabs[name] = btn
  38. Pages[name] = page
  39.  
  40. end
  41.  
  42. local function CreateScriptButton(tab, text, callback) local Btn = Instance.new("TextButton") Btn.Size = UDim2.new(1, -20, 0, 40) Btn.Position = UDim2.new(0, 10, 0, 0) Btn.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Btn.TextColor3 = Color3.fromRGB(255, 255, 255) Btn.Font = Enum.Font.Gotham Btn.TextSize = 18 Btn.Text = text Btn.Parent = Pages[tab]
  43.  
  44. local corner = Instance.new("UICorner")
  45. corner.CornerRadius = UDim.new(0, 8)
  46. corner.Parent = Btn
  47.  
  48. Btn.MouseButton1Click:Connect(callback)
  49.  
  50. end
  51.  
  52. -- Tabs CreateTab("Movesets") CreateTab("Tools") CreateTab("Visuals") CreateTab("Fighting") CreateTab("Credits")
  53.  
  54. -- Movesets CreateScriptButton("Movesets", "Gojo Moveset", function() getgenv().FatalCombatSkillLayout = true getgenv().MovesetReachSound = true getgenv().CharacterOnList = true getgenv().AwakeningUpTiltCutscene = true getgenv().ReversalRedChatLine = true getgenv().ReversalTechniqueRedChatLine = true getgenv().AwakenChatLine = true getgenv().MaximumPurpleChatLine = true getgenv().HollowPurpleChatLine = true getgenv().GojoCharacter = false getgenv().NewAnimations = true loadstring(game:HttpGet("https://gist.githubusercontent.com/SonicexePort/c2c90da0c63506c5872ba10983c4b73d/raw/bd3e7657d4b1e222ed376419ec3fb4f9aabd176c/Six%2520Eyes%2520Mobile%2520Port%2520(CURSED%2520ENERGY!)"))() end)
  55.  
  56. CreateScriptButton("Movesets", "Goku Moveset", function() loadstring(game:HttpGet("https://pastebin.com/raw/BGdqkp05"))() end)
  57.  
  58. CreateScriptButton("Movesets", "Sukuna Moveset", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/damir512/whendoesbrickdie/main/tspno.txt", true))() end)
  59.  
  60. CreateScriptButton("Movesets", "Shinjiro Moveset", function() getgenv().speedtools = false getgenv().speedpunch = true getgenv().dance = false getgenv().night = false loadstring(game:HttpGet('https://raw.githubusercontent.com/Kenjihin69/Kenjihin69/refs/heads/main/Shinji%20tp%20exploit'))() end)
  61.  
  62. CreateScriptButton("Movesets", "Jun Moveset", function() getgenv().BetterGraphics = true getgenv().sendChat = false loadstring(game:HttpGet("https://raw.githubusercontent.com/Mc4121ban/Source/refs/heads/main/omg%20ratter.lua.creck"))() end)
  63.  
  64. CreateScriptButton("Movesets", "Golden Head Moveset", function() getgenv().stand = false getgenv().ken = false getgenv().Spawn = true loadstring(game:HttpGet('https://raw.githubusercontent.com/Kenjihin69/Kenjihin69/refs/heads/main/Baldy%20to%20golden%20head'))() end)
  65.  
  66. -- Tools CreateScriptButton("Tools", "TP Tool", function() local tool = Instance.new("Tool") tool.RequiresHandle = false tool.Name = "Tp tool (Equip to Click TP)"
  67.  
  68. tool.Activated:Connect(function()
  69. local mouse = game.Players.LocalPlayer:GetMouse()
  70. if mouse and mouse.Hit then
  71. local pos = mouse.Hit.Position + Vector3.new(0, 2.5, 0)
  72. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(pos)
  73. end
  74. end)
  75.  
  76. tool.Parent = game.Players.LocalPlayer.Backpack
  77.  
  78. end)
  79.  
  80. -- Visuals CreateScriptButton("Visuals", "PShade Visuals", function() loadstring(game:HttpGet('https://raw.githubusercontent.com/randomstring0/pshade-ultimate/refs/heads/main/src/cd.lua'))() end)
  81.  
  82. -- Fighting CreateScriptButton("Fighting", "Auto Block", function() loadstring(game:HttpGet("https://github.com/l0ckerV5/Roblox-Scripts/raw/main/The%20Strongest%20Battlegrounds/Auto%20Block"))() end)
  83.  
  84. CreateScriptButton("Fighting", "Auto Kyoto", function() loadstring(game:HttpGet("https://pastefy.app/Z7DawZJB/raw"))() end)
  85.  
  86. CreateScriptButton("Fighting", "Aim Lock", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/sdfesdfsedf/srgtergasdfs/main/aim", true))() end)
  87.  
  88. -- Credits local credits = Instance.new("TextLabel") credits.Size = UDim2.new(1, -20, 0, 80) credits.BackgroundTransparency = 1 credits.Text = "Made By Andrew\nHelped with ChatGPT\nCredits to all script creators\nUpdated April 21, 2025." credits.TextColor3 = Color3.fromRGB(200, 200, 200) credits.Font = Enum.Font.Gotham credits.TextSize = 16 credits.TextWrapped = true credits.TextYAlignment = Enum.TextYAlignment.Top credits.Parent = Pages["Credits"]
  89.  
  90.  
Advertisement
Add Comment
Please, Sign In to add comment