Advertisement
hytersilent

Streamable Silent Aim Da Hood

Oct 25th, 2022
2,114
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 1
  1. --IF THE SCRIPT ISNT WORKING PLEASE CHECK https://silentaim-by-hyter.mailchimpsites.com/
  2. --DISCORD https://discord.gg/djJcY5H2
  3. --FULLY STREAMABLE SILENT AIM
  4.  
  5.  
  6. -- // Dependencies
  7. local Aiming = loadstring(game:HttpGet("https://pastebin.com/raw/fKyW0Wfx"))()
  8. Aiming.TeamCheck(false)
  9.  
  10. -- // Services
  11. local Workspace = game:GetService("Workspace")
  12. local Players = game:GetService("Players")
  13. local RunService = game:GetService("RunService")
  14. local UserInputService = game:GetService("UserInputService")
  15.  
  16. -- // Vars
  17. local LocalPlayer = Players.LocalPlayer
  18. local Mouse = LocalPlayer:GetMouse()
  19. local CurrentCamera = Workspace.CurrentCamera
  20.  
  21. local DaHoodSettings = {
  22. SilentAim = true,
  23. AimLock = true,
  24. Prediction = 0.165,
  25. AimLockKeybind = Enum.KeyCode.E
  26. }
  27. getgenv().DaHoodSettings = DaHoodSettings
  28.  
  29. -- // Overwrite to account downed
  30. function Aiming.Check()
  31. -- // Check A
  32. if not (Aiming.Enabled == true and Aiming.Selected ~= LocalPlayer and Aiming.SelectedPart ~= nil) then
  33. return false
  34. end
  35.  
  36. -- // Check if downed
  37. local Character = Aiming.Character(Aiming.Selected)
  38. local KOd = Character:WaitForChild("BodyEffects")["K.O"].Value
  39. local Grabbed = Character:FindFirstChild("GRABBING_CONSTRAINT") ~= nil
  40.  
  41. -- // Check B
  42. if (KOd or Grabbed) then
  43. return false
  44. end
  45.  
  46. -- //
  47. return true
  48. end
  49.  
  50. -- // Hook
  51. local __index
  52. __index = hookmetamethod(game, "__index", function(t, k)
  53. -- // Check if it trying to get our mouse's hit or target and see if we can use it
  54. if (t:IsA("Mouse") and (k == "Hit" or k == "Target") and Aiming.Check()) then
  55. -- // Vars
  56. local SelectedPart = Aiming.SelectedPart
  57.  
  58. -- // Hit/Target
  59. if (DaHoodSettings.SilentAim and (k == "Hit" or k == "Target")) then
  60. -- // Hit to account prediction
  61. local Hit = SelectedPart.CFrame + (SelectedPart.Velocity * DaHoodSettings.Prediction)
  62.  
  63. -- // Return modded val
  64. return (k == "Hit" and Hit or SelectedPart)
  65. end
  66. end
  67.  
  68. -- // Return
  69. return __index(t, k)
  70. end)
  71.  
  72. -- // Aimlock
  73. RunService:BindToRenderStep("AimLock", 0, function()
  74. if (DaHoodSettings.AimLock and Aiming.Check() and UserInputService:IsKeyDown(DaHoodSettings.AimLockKeybind)) then
  75. -- // Vars
  76. local SelectedPart = Aiming.SelectedPart
  77.  
  78. -- // Hit to account prediction
  79. local Hit = SelectedPart.CFrame + (SelectedPart.Velocity * DaHoodSettings.Prediction)
  80.  
  81. -- // Set the camera to face towards the Hit
  82. CurrentCamera.CFrame = CFrame.lookAt(CurrentCamera.CFrame.Position, Hit.Position)
  83. end
  84. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement