Advertisement
hacimiks

finity

Apr 7th, 2024 (edited)
730
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.28 KB | None | 0 0
  1. local Finity = loadstring(game:HttpGet("http://finity.vip/scripts/finity_lib.lua"))()
  2. local FinityWindow = Finity.new(false)
  3. FinityWindow.ChangeToggleKey(Enum.KeyCode.Semicolon)
  4.  
  5. local VisualsCategory = FinityWindow:Category("Visuals")
  6. local AimbotCategory = FinityWindow:Category("Aimbot")
  7. -- Visuals Sectors
  8. local VisualsESPSettings = VisualsCategory:Sector("ESP Settings")
  9. local VisualsPlayerESP = VisualsCategory:Sector("Player ESP")
  10. local VisualsItemESP = VisualsCategory:Sector("Item ESP")
  11. We can repeat the same process for our Aimbot category.
  12. -- Aimbot Sectors
  13. local AimbotColors = AimbotCategory:Sector("Aimbot Colors")
  14. local AimbotHotkeys = AimbotCategory:Sector("Aimbot Hotkeys")
  15. local AimbotConfigurations = AimbotCategory:Sector("Aimbot Configurations")
  16.  
  17. VisualsESPSettings:Cheat(
  18.     "Checkbox", -- Type
  19.     "ESP Enabled", -- Name
  20.     function(State) -- Callback function
  21.         print("Checkbox state changed:", State)
  22.     end
  23. )
  24. VisualsPlayerESP:Cheat(
  25.     "Checkbox", -- Type
  26.     "Player ESP Enabled", -- Name
  27.     function(State) -- Callback function
  28.         print("Checkbox state changed:", State)
  29.     end
  30. )
  31. VisualsItemESP:Cheat(
  32.     "Checkbox", -- Type
  33.     "Item ESP Enabled", -- Name
  34.     function(State) -- Callback function
  35.         print("Checkbox state changed:", State)
  36.     end
  37. )
  38.  
  39. AimbotConfigurations:Cheat(
  40.     "Checkbox", -- Type
  41.     "Aimbot Enabled", -- Name
  42.     function(State) -- Callback function
  43.         print("Checkbox state changed:", State)
  44.     end
  45. )
  46. -- Uncondensed
  47. VisualsESPSettings:Cheat(
  48.     "Checkbox", -- Type
  49.     "ESP Enabled", -- Name
  50.     function(State) -- Callback function
  51.         print("Checkbox state changed:", State)
  52.     end
  53. )
  54.  
  55. -- Condensed
  56. VisualsESPSettings:Cheat("Checkbox", "ESP Enabled", function(State)
  57.     print("Checkbox state changed:", State)
  58. end)
  59.  
  60. VisualsESPSettings:Cheat("Slider", "Render Distance", function(Value)
  61.     print("Silder value changed:", Value)
  62. end, {min = 0, max = 1500, suffix = " studs"})
  63.  
  64. AimbotConfigurations:Cheat("Slider", "Aimbot FOV", function(Value)
  65.     print("Silder value changed:", Value)
  66. end, {min = 0, max = 120, suffix = "°"})
  67.  
  68. VisualsESPSettings:Cheat("Dropdown", "ESP Color", function(Option)
  69.     print("Dropdown option changed:", Option)
  70. end, {
  71.     options = {
  72.         "Red",
  73.         "White",
  74.         "Green",
  75.         "Pink",
  76.         "Blue"
  77.     }
  78. })
  79.  
  80. AimbotConfigurations:Cheat("Dropdown", "Aimbot Mode", function(Option)
  81.     print("Dropdown option changed:", Option)
  82. end, {
  83.     options = {
  84.         "FOV",
  85.         "Distance",
  86.         "Visibility"
  87.     }
  88. })
  89.        
  90. {
  91.     options = {
  92.         "FOV",
  93.         "Distance",
  94.         "Visibility"
  95.     }
  96.     default = "Distance"
  97. }
  98.  
  99. -- Visuals Textboxes
  100. VisualsItemESP:Cheat("Textbox", "Item To Whitelist", function(Value)
  101.     print("Textbox value changed:", Value)
  102. end, {
  103.     placeholder = "Item Name"
  104. })
  105. VisualsPlayerESP:Cheat("Textbox", "Player To Whitelist", function(Value)
  106.     print("Textbox value changed:", Value)
  107. end, {
  108.     placeholder = "Player Name"
  109. })
  110. -- Aimbot Textboxes
  111. AimbotColors:Cheat("Textbox", "BrickColor Input", function(Value)
  112.     print("Textbox value changed:", Value)
  113. end, {
  114.     placeholder = "BrickColor"
  115. })
  116. AimbotHotkeys:Cheat("Textbox", "Quick Toggle Hotkey", function(Value)
  117.     print("Textbox value changed:", Value)
  118. end, {
  119.     placeholder = "KeyCode"
  120. })
  121. AimbotHotkeys:Cheat("Textbox", "Panic Hotkey", function(Value)
  122.     print("Textbox value changed:", Value)
  123. end, {
  124.     placeholder = "KeyCode"
  125. })
  126.  
  127. VisualsPlayerESP:Cheat("Button", "Reset Whitelist", function()
  128.     print("Button pressed")
  129. end)
  130.  
  131. AimbotColors:Cheat("Button", "Reset Color", function()
  132.     print("Button pressed")
  133. end)
  134.  
  135. AimbotHotkeys:Cheat("Button", "Reset Key", function()
  136.     print("Button pressed")
  137. end)
  138. -- Create category
  139. local CreditsCategory = FinityWindow:Category("Credits")
  140.  
  141. -- Create sectors
  142. local CreditsCreator = CreditsCategory:Sector("Finity Library Creator")
  143. local CreditsSpecialThanks = CreditsCategory:Sector("Special Thanks")
  144. local CreditsTesters = CreditsCategory:Sector("Testers")
  145.  
  146. -- Create labels
  147. CreditsCreator:Cheat("Label", "detourious @ v3rmillion.net")
  148. CreditsCreator:Cheat("Label", "deto#7612 @ discord.gg")
  149.  
  150. CreditsSpecialThanks:Cheat("Label", "wallythebird - held me hostage")
  151. CreditsSpecialThanks:Cheat("Label", "Jan - some inspiration from his lib showcase")
  152. CreditsSpecialThanks:Cheat("Label", "& all of you for supporting me <3")
  153.  
  154. CreditsTesters:Cheat("Label", "detourious - made the darn thing")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement