Advertisement
jamkles

jamkles v3.1

Jan 20th, 2024
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.59 KB | None | 0 0
  1.  
  2. getgenv().Prediction =  (  .18  )   -- [ PREDICTION: Lower Prediction: Lower Ping | Higher Prediction: Higher Ping  ]
  3.  
  4. getgenv().FOV =  ( 90)   -- [ FOV RADIUS: Increases Or Decreases FOV Radius ]
  5.  
  6. getgenv().AimKey =  (  "q"  )  -- [ TOGGLE KEY: Toggles Silent Aim On And Off ]
  7.  
  8. getgenv().DontShootThesePeople = {  -- [ WHITELIST: List Of Who NOT To Shoot, edit like this. "Contain quotations with their name and then a semi-colon afterwards for each line" ; ]
  9.  
  10.     "aimbotykid";
  11.     "Roblox";
  12.  
  13. }
  14.  
  15. --[[
  16.         Do Not Edit Anything Beyond This Point.
  17. ]]
  18.  
  19. local SilentAim = true
  20. local LocalPlayer = game:GetService("Players").LocalPlayer
  21. local Players = game:GetService("Players")
  22. local Mouse = LocalPlayer:GetMouse()
  23. local Camera = game:GetService("Workspace").CurrentCamera
  24. local connections = getconnections(game:GetService("LogService").MessageOut)
  25. for _, v in ipairs(connections) do
  26.     v:Disable()
  27. end
  28.  
  29. getrawmetatable = getrawmetatable
  30. setreadonly = setreadonly
  31. getconnections = getconnections
  32. hookmetamethod = hookmetamethod
  33. getgenv = getgenv
  34. Drawing = Drawing
  35.  
  36. local FOV_CIRCLE = Drawing.new("Circle")
  37. FOV_CIRCLE.Visible = true
  38. FOV_CIRCLE.Filled = false
  39. FOV_CIRCLE.Thickness = 6
  40. FOV_CIRCLE.Transparency = 0
  41. FOV_CIRCLE.Color = Color3.new(0, 1, 0)
  42. FOV_CIRCLE.Radius = getgenv().FOV
  43. FOV_CIRCLE.Position = Vector2.new(Camera.ViewportSize.X / 2, Camera.ViewportSize.Y / 2)
  44.  
  45. Options = {
  46.     Torso = "HumanoidRootPart";
  47.     Head = "Head";
  48. }
  49.  
  50. local function MoveFovCircle()
  51.     pcall(function()
  52.         local DoIt = true
  53.         spawn(function()
  54.             while DoIt do task.wait()
  55.                 FOV_CIRCLE.Position = Vector2.new(Mouse.X, (Mouse.Y + 36))
  56.             end
  57.         end)
  58.     end)
  59. end coroutine.wrap(MoveFovCircle)()
  60.  
  61. Mouse.KeyDown:Connect(function(KeyPressed)
  62.     if KeyPressed == (getgenv().AimKey:lower()) then
  63.         if SilentAim == false then
  64.             FOV_CIRCLE.Color = Color3.new(0, 1, 0)
  65.             SilentAim = true
  66.         elseif SilentAim == true then
  67.             FOV_CIRCLE.Color = Color3.new(1, 0, 0)
  68.             SilentAim = false
  69.         end
  70.     end
  71. end)
  72. Mouse.KeyDown:Connect(function(Rejoin)
  73.     if Rejoin == "=" then
  74.         local LocalPlayer = game:GetService("Players").LocalPlayer
  75.         game:GetService("TeleportService"):Teleport(game.PlaceId, LocalPlayer)
  76.     end
  77. end)
  78.  
  79.  
  80. local oldIndex = nil
  81. oldIndex = hookmetamethod(game, "__index", function(self, Index, Screw)
  82.     local Screw = oldIndex(self, Index)
  83.     local kalk = Mouse
  84.     local cc = "hit"
  85.     local gboost = cc
  86.     if self == kalk and (Index:lower() == gboost) then
  87.         local Distance = 9e9
  88.         local Target = nil
  89.         local Players = game:GetService("Players")
  90.         local LocalPlayer = game:GetService("Players").LocalPlayer
  91.         local Camera = game:GetService("Workspace").CurrentCamera
  92.         for _, v in pairs(Players:GetPlayers()) do
  93.             if not table.find(getgenv().DontShootThesePeople, v.Name) then
  94.                 if v ~= LocalPlayer and v.Character and v.Character:FindFirstChild("HumanoidRootPart") and v.Character:FindFirstChild("Humanoid") and v.Character:FindFirstChild("Humanoid").Health > 0 then
  95.                     local Enemy = v.Character  
  96.                     local CastingFrom = CFrame.new(Camera.CFrame.Position, Enemy[Options.Torso].CFrame.Position) * CFrame.new(0, 0, -4)
  97.                     local RayCast = Ray.new(CastingFrom.Position, CastingFrom.LookVector * 9000)
  98.                     local World, ToSpace = game:GetService("Workspace"):FindPartOnRayWithIgnoreList(RayCast, {LocalPlayer.Character:FindFirstChild("Head")})
  99.                     local RootWorld = (Enemy[Options.Torso].CFrame.Position - ToSpace).magnitude
  100.                     if RootWorld < 4 then      
  101.                         local RootPartPosition, Visible = Camera:WorldToScreenPoint(Enemy[Options.Torso].Position)
  102.                         if Visible then
  103.                             local Real_Magnitude = (Vector2.new(Mouse.X, Mouse.Y) - Vector2.new(RootPartPosition.X, RootPartPosition.Y)).Magnitude
  104.                             if Real_Magnitude < Distance and Real_Magnitude < FOV_CIRCLE.Radius then
  105.                                 Distance = Real_Magnitude
  106.                                 Target = Enemy
  107.                             end
  108.                         end
  109.                     end
  110.                 end
  111.             end
  112.         end
  113.  
  114.         if Target ~= nil and Target[Options.Torso] and Target:FindFirstChild("Humanoid") and Target:FindFirstChild("Humanoid").Health > 0 then
  115.             local Madox = Target[Options.Torso]
  116.             local Formulate = Madox.CFrame + (Madox.AssemblyLinearVelocity * getgenv().Prediction + Vector3.new(0,-1,0))   
  117.             return (Index:lower() == gboost and Formulate)
  118.         end
  119.         return Screw
  120.     end
  121.     return oldIndex(self, Index, Screw)
  122. end)
  123.  
  124.  
  125.  
  126.  
  127. local AkaliNotif = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/Dynissimo/main/Scripts/AkaliNotif.lua"))();
  128. local Notify = AkaliNotif.Notify;
  129. Notify({
  130. Description = "Injected |  dm jamkles#0000 for questions";
  131. Title = "jamkles.lua";
  132. Duration = 15;
  133. });
  134.  
  135.  
  136.  
  137.  
  138. --Farewell jamkles
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement