Advertisement
vurksaim

aimlock with fov

Mar 30th, 2022
2,011
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. --// Aimbot
  2.  
  3. _G.AimbotEnabled = true -- Determines whether or not the Aimbot script will lock onto players.
  4. _G.TeamCheck = false -- If set to true then the script would only lock your aim at enemy team members.
  5. _G.AimPart = "Head" -- What body part of the closest enemy the aimbot script would lock at.
  6. _G.Sensitivity = 0 -- How many seconds it takes for the aimbot script to officially lock onto the target's aimpart.
  7.  
  8. --// FOV Circle
  9.  
  10. _G.CircleSides = 150 -- How many sides the FOV circle would have.
  11. _G.CircleColor = Color3.fromRGB(255, 255, 255) -- (RGB) Color that the FOV circle would appear as.
  12. _G.CircleTransparency = 0.7 -- Transparency of the circle.
  13. _G.CircleRadius = 80 -- The radius of the circle / FOV.
  14. _G.CircleFilled = false -- Determines whether or not the circle area will be filled.
  15. _G.CircleVisible = true -- Determines whether or not the circle will be visible.
  16. _G.CircleThickness = 0 -- The thickness of the circle.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement