Advertisement
JackPackS

roblox base

Jun 9th, 2022
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. local Config = {
  2. WindowName = "Aim/ESP",
  3. Color = Color3.fromRGB(255,128,64),
  4. Keybind = Enum.KeyCode.RightControl
  5. }
  6.  
  7. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/AlexR32/Roblox/main/BracketV3.lua"))()
  8. local Window = Library:CreateWindow(Config, game:GetService("CoreGui"))
  9.  
  10. local Tab1 = Window:CreateTab("Main")
  11. local Tab2 = Window:CreateTab("UI Settings")
  12.  
  13. local Section1 = Tab1:CreateSection("Aimbot")
  14. local Section2 = Tab1:CreateSection("ESP")
  15. local Section3 = Tab2:CreateSection("Menu")
  16. local Section4 = Tab2:CreateSection("Background")
  17.  
  18. -------------
  19. Section1:CreateToggle("Aimbot", false, function(State)
  20. getgenv().aimbot = State
  21. end)
  22. -------------
  23. Section2:CreateToggle("ESP", false, function(State)
  24. getgenv().esp = State
  25. end)
  26. -------------
  27. local Toggle3 = Section3:CreateToggle("UI Toggle", nil, function(State)
  28. Window:Toggle(State)
  29. end)
  30. Toggle3:CreateKeybind(tostring(Config.Keybind):gsub("Enum.KeyCode.", ""), function(Key)
  31. Config.Keybind = Enum.KeyCode[Key]
  32. end)
  33. Toggle3:SetState(true)
  34.  
  35. local Colorpicker3 = Section3:CreateColorpicker("UI Color", function(Color)
  36. Window:ChangeColor(Color)
  37. end)
  38. Colorpicker3:UpdateColor(Config.Color)
  39.  
  40. -- credits to jan for patterns
  41. local Dropdown3 = Section4:CreateDropdown("Image", {"Default","Hearts","Abstract","Hexagon","Circles","Lace With Flowers","Floral"}, function(Name)
  42. if Name == "Default" then
  43. Window:SetBackground("2151741365")
  44. elseif Name == "Hearts" then
  45. Window:SetBackground("6073763717")
  46. elseif Name == "Abstract" then
  47. Window:SetBackground("6073743871")
  48. elseif Name == "Hexagon" then
  49. Window:SetBackground("6073628839")
  50. elseif Name == "Circles" then
  51. Window:SetBackground("6071579801")
  52. elseif Name == "Lace With Flowers" then
  53. Window:SetBackground("6071575925")
  54. elseif Name == "Floral" then
  55. Window:SetBackground("5553946656")
  56. end
  57. end)
  58. Dropdown3:SetOption("Default")
  59.  
  60. local Colorpicker4 = Section4:CreateColorpicker("Color", function(Color)
  61. Window:SetBackgroundColor(Color)
  62. end)
  63. Colorpicker4:UpdateColor(Color3.new(1,1,1))
  64.  
  65. local Slider3 = Section4:CreateSlider("Transparency",0,1,nil,false, function(Value)
  66. Window:SetBackgroundTransparency(Value)
  67. end)
  68. Slider3:SetValue(0)
  69.  
  70. local Slider4 = Section4:CreateSlider("Tile Scale",0,1,nil,false, function(Value)
  71. Window:SetTileScale(Value)
  72. end)
  73. Slider4:SetValue(0.5)
  74.  
  75. game:GetService("RunService").RenderStepped:Connect(function()
  76. if aimbot then
  77. end
  78. end)
  79.  
  80. game:GetService("RunService").RenderStepped:Connect(function()
  81. if esp then
  82. end
  83. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement