vtrvsted

street slient v3

Mar 1st, 2023
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.85 KB | None | 0 0
  1. local hotkey = "q" -- toggle key
  2. local mouse = game.Players.LocalPlayer:GetMouse()
  3.  
  4.  
  5. mouse.KeyDown:Connect(function(key)
  6. if key == hotkey then
  7. if getgenv().DaHoodSettings.SilentAim == true then
  8.  getgenv().DaHoodSettings.SilentAim = false
  9. else
  10. getgenv().DaHoodSettings.SilentAim = true
  11. end
  12. end
  13. end)
  14.  
  15. loadstring(game:HttpGet("https://pastebin.com/raw/zVeEZTs6",true))()
  16. DaHoodSettings.Prediction = 0.169 -- lower for lower ping and higher for higher ping.
  17. Aiming.FOV = 9 -- size of silent aim
  18. Aiming.FOVSides = 25 -- how smooth silent aim circle is
  19. Aiming.HitChance = 100
  20. Aiming.ShowFOV = false
  21.  
  22.  getgenv().AimlockKey = "c" -- aimbot toggle
  23.  getgenv().AimPart = "Head" -- UpperTorso, LowerTorso, HumanoidRootPart, Head
  24.  getgenv().PredictionVelocity = 6.612 -- aimbot prediction.
  25.  getgenv().SmoothnessAmount = 0.01 -- dont go over 0.01 to look legit
Add Comment
Please, Sign In to add comment