hacimiks

Shaman

Apr 10th, 2024
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.55 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet('https://raw.githubusercontent.com/aoki0x/UI-Libraries/main/Shaman%20Ui%20Library/source.lua'))()
  2. local Flags = Library.Flags
  3.  
  4. local Window = Library:Window({
  5.     Text = "Baseplate"
  6. })
  7.  
  8. local Tab = Window:Tab({
  9.     Text = "Aiming"
  10. })
  11.  
  12. local Tab2 = Window:Tab({
  13.     Text = "Visual"
  14. })
  15.  
  16. local ChamsSection = Tab2:Section({
  17.     Text = "Chams"
  18. })
  19.  
  20. local Section = Tab:Section({
  21.     Text = "Aimbot"
  22. })
  23.  
  24. local Section2 = Tab:Section({
  25.     Text = "FOV"
  26. })
  27.  
  28. local Section3 = Tab:Section({
  29.     Text = "Misc",
  30.     Side = "Right"
  31. })
  32.  
  33. ChamsSection:Toggle({
  34.     Text = "Enabled"
  35. })
  36.  
  37. ChamsSection:Toggle({
  38.     Text = "Color"
  39. })
  40.  
  41. ChamsSection:Toggle({
  42.     Text = "Filled"
  43. })
  44.  
  45. ChamsSection:Toggle({
  46.     Text = "Team Check"
  47. })
  48.  
  49. Section:Toggle({
  50.     Text = "Enabled"
  51. })
  52.  
  53. Section:Toggle({
  54.     Text = "Wall Check"
  55. })
  56.  
  57. Section:Toggle({
  58.     Text = "Smooth Aimbot"
  59. })
  60.  
  61. Section2:Toggle({
  62.     Text = "Enabled"
  63. })
  64.  
  65. Section2:Toggle({
  66.     Text = "Filled FOV"
  67. })
  68.  
  69. Section2:Toggle({
  70.     Text = "FOV Transparency",
  71.     Tooltip = "Changes your fov transparency."
  72. })
  73.  
  74. Section2:Button({
  75.     Text = "Reset FOV",
  76.     Tooltip = "This resets your aimbot fov."
  77. })
  78.  
  79. Section3:Toggle({
  80.     Text = "Infinite Ammo"
  81. })
  82.  
  83. Section3:Toggle({
  84.     Text = "No Spread"
  85. })
  86.  
  87. Section3:Toggle({
  88.     Text = "No Bullet Drop",
  89.     Default = true
  90. })
  91.  
  92. Section3:Toggle({
  93.     Text = "Full Auto"
  94. })
  95.  
  96. local a = Section3:Toggle({
  97.     Text = "No Recoil"
  98. })
  99.  
  100. local label = Section3:Label({
  101.     Text = "This is a label.",
  102.     Color = Color3.fromRGB(217, 97, 99),
  103.     Tooltip = "This is a label."
  104. })
  105.  
  106. local dropdown = Section:Dropdown({
  107.     Text = "Dropdown",
  108.     List = {"Head","Torso","Random"},
  109.     Flag = "Choosen",
  110.     Callback = function(v)
  111.         warn(v)
  112.     end
  113. })
  114.  
  115. Section:RadioButton({
  116.     Text = "RadioButton",
  117.     Options = {"Legit","Blatant"},
  118.     Callback = function(v)
  119.         warn(v)
  120.     end
  121. })
  122.  
  123. Section:Toggle({
  124.     Text = "Silent Aimbot"
  125. })
  126.  
  127. Section:Input({
  128.     Placeholder = "Webhook URL",
  129.     Flag = "URL"
  130. })
  131.  
  132. Section:Keybind({
  133.     Default = Enum.KeyCode.E,
  134.     Text = "Aimbot Key",
  135.     Callback = function()
  136.         warn("Pressed")
  137.     end
  138. })
  139.  
  140. Section:Slider({
  141.     Text = "Slider Test",
  142.     Default = 5,
  143.     Minimum = 0,
  144.     Maximum = 50,
  145.     Flag = "SliderFlag",
  146.     Callback = function(v)
  147.         warn(v)
  148.     end
  149. })
  150.  
  151. Tab:Select()
  152.  
  153. wait(5)
  154.  
  155. --[[dropdown:Refresh({
  156.     List = {"Head", "Feet"}
  157. })--]]
  158.  
  159. label:Set({
  160.     Text = "This is a red label."
  161. })
  162.  
  163. a:Set(true)
Add Comment
Please, Sign In to add comment