Advertisement
LookPlays

Depedencies Aim

Feb 24th, 2025
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.05 KB | Gaming | 0 0
  1. getgenv().AimbotSettings = {
  2.     TeamCheck = true, -- Press ] to toggle
  3.     VisibleCheck = true,
  4.     IgnoreTransparency = true, -- if enabled, visible check will automatically filter transparent objects
  5.     IgnoredTransparency = 0.5, -- all parts with a transparency greater than this will be ignored (IgnoreTransparency has to be enabled)
  6.     RefreshRate = 10, -- how fast the aimbot updates (milliseconds)
  7.     Keybind = "MouseButton2",
  8.     ToggleKey = "RightShift",
  9.     MaximumDistance = 300, -- Set this to something lower if you dont wanna lock on some random person across the map
  10.     AlwaysActive = false,
  11.     Aimbot = {
  12.         Enabled = true,
  13.         TargetPart = "Head",
  14.         Use_mousemoverel = true,
  15.         Strength = 100, -- 1% - 200%
  16.         AimType = "Hold", -- "Hold" or "Toggle"
  17.         AimAtNearestPart = false
  18.     },
  19.     AimAssist = {
  20.         Enabled = false,
  21.         MinFov = 15,
  22.         MaxFov = 80,
  23.         DynamicFov = true,
  24.         ShowFov = false, -- Shows Min & Max fov
  25.         Strength = 55, -- 1% - 100%
  26.         SlowSensitivity = true,
  27.         SlowFactor = 1.75, -- 1% - 10%
  28.         RequireMovement = true
  29.     },
  30.     FovCircle = {
  31.         Enabled = true,
  32.         Dynamic = true,
  33.         Radius = 100,
  34.         Transparency = 1,
  35.         Color = Color3.fromRGB(255,255,255),
  36.         NumSides = 64,
  37.     },
  38.     TriggerBot = {
  39.         Enabled = false,
  40.         Delay = 60, -- how long it waits before clicking (milliseconds)
  41.         Spam = true, -- for semi-auto weapons
  42.         ClicksPerSecond = 10, -- set this to 0 to get anything higher than 37 cps
  43.         UseKeybind = false, -- if enabled, your keybind must be held to use trigger bot
  44.     },
  45.     Crosshair = {
  46.         Enabled = false,
  47.         Transparency = 1,
  48.         TransparencyKeybind = 1, -- when the keybind is held, the crosshair's transparency will be changed to this
  49.         Color = Color3.fromRGB(255, 0, 0),
  50.         RainbowColor = false,
  51.         Length = 15,
  52.         Thickness = 2,
  53.         Offset = 0
  54.     },
  55.     Prediction = {
  56.         Enabled = false,
  57.         Strength = 2
  58.     },
  59.     Priority = {},
  60.     Whitelisted = {}, -- Username or User ID
  61.     WhitelistFriends = true, -- Automatically adds friends to the whitelist
  62.     Ignore = {} -- Raycast Ignore
  63. }
  64. loadstring(game:HttpGet("https://pastebin.com/raw/Wzh5R3qu", "UniversalAimbot"))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement