Advertisement
Okb00mer

Untitled

Dec 13th, 2022
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1.  
  2. --▄▄▄ . ▄▄▄· ▄▄▄▄▄▄▄▄ . ▐ ▄ .▄▄ · ▄▄▄▄▄▄▄▄ ▄▄▄ . ▄▄▄· • ▌ ▄ ·. ▄▄▄· ▄▄▄▄· ▄▄▌ ▄▄▄ .
  3. --▀▄.▀·▐█ ▀█ •██ ▀▄.▀·•█▌▐█ ▐█ ▀. •██ ▀▄ █·▀▄.▀·▐█ ▀█ ·██ ▐███▪▐█ ▀█ ▐█ ▀█▪██• ▀▄.▀·
  4. --▐▀▀▪▄▄█▀▀█ ▐█.▪▐▀▀▪▄▐█▐▐▌ ▄▀▀▀█▄ ▐█.▪▐▀▀▄ ▐▀▀▪▄▄█▀▀█ ▐█ ▌▐▌▐█·▄█▀▀█ ▐█▀▀█▄██▪ ▐▀▀▪▄
  5. --▐█▄▄▌▐█ ▪▐▌ ▐█▌·▐█▄▄▌██▐█▌ ▐█▄▪▐█ ▐█▌·▐█•█▌▐█▄▄▌▐█ ▪▐▌██ ██▌▐█▌▐█ ▪▐▌██▄▪▐█▐█▌▐▌▐█▄▄▌
  6. --▀▀▀ ▀ ▀ ▀▀▀ ▀▀▀ ▀▀ █▪ ▀▀▀▀ ▀▀▀ .▀ ▀ ▀▀▀ ▀ ▀ ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ .▀▀▀ ▀▀▀
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44. local Aiming = loadstring(game:HttpGet("https://pastebin.com/raw/CVNk1fTx"))()
  45. Aiming.TeamCheck(false)
  46.  
  47. local Workspace = game:GetService("Workspace")
  48. local Players = game:GetService("Players")
  49. local RunService = game:GetService("RunService")
  50. local UserInputService = game:GetService("UserInputService")
  51.  
  52. local LocalPlayer = Players.LocalPlayer
  53. local Mouse = LocalPlayer:GetMouse()
  54. local CurrentCamera = Workspace.CurrentCamera
  55.  
  56. local DaHoodSettings = {
  57. SilentAim = true,
  58. AimLock = false,
  59. Prediction = 0.148357,
  60. AimLockKeybind = Enum.KeyCode.E
  61. }
  62. getgenv().DaHoodSettings = DaHoodSettings
  63.  
  64. function Aiming.Check()
  65. if not (Aiming.Enabled == true and Aiming.Selected ~= LocalPlayer and Aiming.SelectedPart ~= nil) then
  66. return false
  67. end
  68.  
  69. local Character = Aiming.Character(Aiming.Selected)
  70. local KOd = Character:WaitForChild("BodyEffects")["K.O"].Value
  71. local Grabbed = Character:FindFirstChild("GRABBING_CONSTRAINT") ~= nil
  72.  
  73. if (KOd or Grabbed) then
  74. return false
  75. end
  76.  
  77. return true
  78. end
  79.  
  80. local __index
  81. __index = hookmetamethod(game, "__index", function(t, k)
  82. if (t:IsA("Mouse") and (k == "Hit" or k == "Target") and Aiming.Check()) then
  83. local SelectedPart = Aiming.SelectedPart
  84.  
  85. if (DaHoodSettings.SilentAim and (k == "Hit" or k == "Target")) then
  86. local Hit = SelectedPart.CFrame + (SelectedPart.Velocity * DaHoodSettings.Prediction)
  87.  
  88. return (k == "Hit" and Hit or SelectedPart)
  89. end
  90. end
  91.  
  92. return __index(t, k)
  93. end)
  94.  
  95. RunService:BindToRenderStep("AimLock", 0, function()
  96. if (DaHoodSettings.AimLock and Aiming.Check() and UserInputService:IsKeyDown(DaHoodSettings.AimLockKeybind)) then
  97. local SelectedPart = Aiming.SelectedPart
  98.  
  99. local Hit = SelectedPart.CFrame + (SelectedPart.Velocity * DaHoodSettings.Prediction)
  100.  
  101. CurrentCamera.CFrame = CFrame.lookAt(CurrentCamera.CFrame.Position, Hit.Position)
  102. end
  103. end)
  104.  
  105. local cframeSpheedhotkeyXd1 = "l" -- toggle key
  106. local mouse = game.Players.LocalPlayer:GetMouse()
  107.  
  108.  
  109.  
  110. mouse.KeyDown:Connect(function(value)
  111. if value == cframeSpheedhotkeyXd1 then
  112. if DaHoodSettings.SilentAim == true then
  113. DaHoodSettings.SilentAim = false
  114. else
  115. DaHoodSettings.SilentAim = true
  116. end
  117. end
  118. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement