saintcupids

eaten stream source 1

Oct 4th, 2022 (edited)
23
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. local Aiming = loadstring(game:HttpGet("https://pastebin.com/raw/4NJetCTG"))()
  44. Aiming.TeamCheck(false)
  45.  
  46. local Workspace = game:GetService("Workspace")
  47. local Players = game:GetService("Players")
  48. local RunService = game:GetService("RunService")
  49. local UserInputService = game:GetService("UserInputService")
  50.  
  51. local LocalPlayer = Players.LocalPlayer
  52. local Mouse = LocalPlayer:GetMouse()
  53. local CurrentCamera = Workspace.CurrentCamera
  54.  
  55. local DaHoodSettings = {
  56. SilentAim = true,
  57. AimLock = false,
  58. Prediction = 0.148357,
  59. AimLockKeybind = Enum.KeyCode.E
  60. }
  61. getgenv().DaHoodSettings = DaHoodSettings
  62.  
  63. function Aiming.Check()
  64. if not (Aiming.Enabled == true and Aiming.Selected ~= LocalPlayer and Aiming.SelectedPart ~= nil) then
  65. return false
  66. end
  67.  
  68. local Character = Aiming.Character(Aiming.Selected)
  69. local KOd = Character:WaitForChild("BodyEffects")["K.O"].Value
  70. local Grabbed = Character:FindFirstChild("GRABBING_CONSTRAINT") ~= nil
  71.  
  72. if (KOd or Grabbed) then
  73. return false
  74. end
  75.  
  76. return true
  77. end
  78.  
  79. local __index
  80. __index = hookmetamethod(game, "__index", function(t, k)
  81. if (t:IsA("Mouse") and (k == "Hit" or k == "Target") and Aiming.Check()) then
  82. local SelectedPart = Aiming.SelectedPart
  83.  
  84. if (DaHoodSettings.SilentAim and (k == "Hit" or k == "Target")) then
  85. local Hit = SelectedPart.CFrame + (SelectedPart.Velocity * DaHoodSettings.Prediction)
  86.  
  87. return (k == "Hit" and Hit or SelectedPart)
  88. end
  89. end
  90.  
  91. return __index(t, k)
  92. end)
  93.  
  94. RunService:BindToRenderStep("AimLock", 0, function()
  95. if (DaHoodSettings.AimLock and Aiming.Check() and UserInputService:IsKeyDown(DaHoodSettings.AimLockKeybind)) then
  96. local SelectedPart = Aiming.SelectedPart
  97.  
  98. local Hit = SelectedPart.CFrame + (SelectedPart.Velocity * DaHoodSettings.Prediction)
  99.  
  100. CurrentCamera.CFrame = CFrame.lookAt(CurrentCamera.CFrame.Position, Hit.Position)
  101. end
  102. end)
  103.  
  104. local cframeSpheedhotkeyXd1 = "l" -- toggle key
  105. local mouse = game.Players.LocalPlayer:GetMouse()
  106.  
  107.  
  108.  
  109. mouse.KeyDown:Connect(function(value)
  110. if value == cframeSpheedhotkeyXd1 then
  111. if DaHoodSettings.SilentAim == true then
  112. DaHoodSettings.SilentAim = false
  113. else
  114. DaHoodSettings.SilentAim = true
  115. end
  116. end
  117. end)
Advertisement
Add Comment
Please, Sign In to add comment