Advertisement
vtrvsted

azure leaked modded script

Jul 26th, 2023
5,886
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 33.45 KB | None | 0 0
  1. __=
  2.  
  3.     "Discord: Actyrn#7104, Server: .gg/wDngb2mv4H"
  4.  
  5. -- Credits to Elegant & Fulcrum.#2610, the original script coders!!
  6.  
  7. -- DO NOT EDIT BELOW IF YOU DON'T KNOW WHAT YOU'RE DOING!!
  8.  
  9. repeat wait() until game:IsLoaded()
  10.  
  11. loadstring(game:HttpGet("https://pastebin.com/raw/JFzC7iXS"))()
  12.  
  13. -- Variables
  14.  
  15. local NotifLib =
  16.     loadstring(game:HttpGet("https://pastebin.com/raw/KRep3e1w"))()
  17.  
  18. local CamBindEnabled = false
  19. local TargBindEnabled = false
  20.  
  21. local Plr = game.Players.LocalPlayer
  22.  
  23. local RunService = game.RunService
  24. local UserInputService = game.UserInputService
  25.  
  26. local Gmt = getrawmetatable(game)
  27. local Old = Gmt.__namecall
  28. local NewIndex
  29.  
  30. local StrafeSpeed2 = 0
  31.  
  32. local TargCursorDot = Drawing.new("Circle")
  33. local TargFovCircle = Drawing.new("Circle")
  34. local TargetTracer = Drawing.new("Line")
  35.  
  36. local SelfDotCircle = Drawing.new("Circle")
  37. local CamFovCircle = Drawing.new("Circle")
  38.  
  39. local TargetPlrStats = Instance.new("ScreenGui")
  40.  
  41. local Picture = Instance.new("ImageLabel")
  42. local NameOfTarget = Instance.new("TextLabel")
  43.  
  44. local UIGradient1 = Instance.new("UIGradient")
  45. local UIGradient2 = Instance.new("UIGradient")
  46. local UIGradient3 = Instance.new("UIGradient")
  47. local UIGradient4 = Instance.new("UIGradient")
  48.  
  49. local TargDotParent = Instance.new("Part", workspace)
  50. local TargDotBillboard = Instance.new("BillboardGui", TargDotParent)
  51.  
  52. local Top = Instance.new("Frame")
  53. local Background = Instance.new("Frame")
  54. local HealthBarBackground = Instance.new("Frame")
  55. local HealthBar = Instance.new("Frame")
  56. local TargDotFrame = Instance.new("Frame", TargDotBillboard)
  57.  
  58. local newUiCornor = Instance.new("UICorner", TargDotFrame)
  59. local Highlight = Instance.new("Highlight", game.CoreGui)
  60.  
  61. local Utilities = {
  62.     NoJumpCooldown = false,
  63.     AntiStomp = false,
  64.     NoSlowdown = false
  65. }
  66.  
  67. local TargetAimbot = {
  68.     Enabled = false,
  69.     Keybind = nil,
  70.  
  71.     Prediction = nil,
  72.     Resolver = false,
  73.  
  74.     JumpOffset = 0,
  75.     RealJumpOffset = nil,
  76.  
  77.     HitParts = {"HumanoidRootPart"},
  78.     RealHitPart = nil,
  79.  
  80.     MousePosType = "UpdateMousePos", -- "UpdateMousePos", "GetMousePos", "MousePos"
  81.     Notifications = false,
  82.  
  83.     LookAt = false,
  84.     ViewAt = false,
  85.  
  86.     Dot = false,
  87.     Tracer = false,
  88.  
  89.     DotOnCursor = false,
  90.     Highlight = false,
  91.     Stats = false,
  92.  
  93.     UseFov = false
  94. }
  95.  
  96. local CameraAimbot = {
  97.     Enabled = false,
  98.     Keybind = nil,
  99.  
  100.     Prediction = nil,
  101.     Resolver = false,
  102.  
  103.     HitPart = "HumanoidRootPart",
  104.  
  105.     Notifications = false,
  106.  
  107.     JumpOffset = 0,
  108.     RealJumpOffset = nil,
  109.  
  110.     Smoothness = false,
  111.     Smoothing = nil,
  112.  
  113.     UseFov = false
  114. }
  115.  
  116. local Movement = {
  117.     SpeedEnabled = false,
  118.     SpeedAmount = 1,
  119.  
  120.     AutoJump = false,
  121.  
  122.     StrafeEnabled = false,
  123.     StrafeSpeed = 1,
  124.     StrafeDistance = 1,
  125.     StrafeHeight = 1,
  126.  
  127.     FlightEnabled = false,
  128.     FlightSpeed = 1
  129. }
  130.  
  131. local SelfDot = {
  132.     Enabled = false,
  133.  
  134.     RandomAimPart = false,
  135.     Prediction = 1,
  136.     AimPart = "HumanoidRootPart",
  137.     OldAimPart = nil
  138. }
  139.  
  140. local AntiLock = {
  141.     Enabled = false,
  142.     Mode = "Custom", -- "Custom", "Prediction Changer", "Prediction Disabler", "Up", "Down", "Prediction Tripler", "Prediction Reverser", "LookVector", "AirOrthodox", "Prediction Multiplier", "Spinbot Desync"
  143.  
  144.     CustomX = 10000,
  145.     CustomY = 10000,
  146.     CustomZ = 10000,
  147.  
  148.     LookVecAmt = 500,
  149.     PredChangeAmt = 5,
  150.  
  151.     DesyncVel = Vector3.new(9e9, 9e9, 9e9),
  152.     DesyncAngles = 0.5
  153. }
  154.  
  155. -- Functions
  156.  
  157. function ClosestPlr(UseFov, FovCircle)
  158.     local Distance, Closest = math.huge, nil
  159.  
  160.     for i, v in pairs(game.Players:GetPlayers()) do
  161.         if v ~= Plr and v.Character then
  162.             local Pos = workspace.CurrentCamera:WorldToViewportPoint(v.Character.PrimaryPart.Position)
  163.             local Magnitude = (Vector2.new(Pos.X, Pos.Y) - Vector2.new(UserInputService:GetMouseLocation().X, UserInputService:GetMouseLocation().Y)).Magnitude
  164.  
  165.             if UseFov then
  166.                 if Magnitude < Distance and Magnitude < FovCircle.Radius then
  167.                     Closest = v
  168.                     Distance = Magnitude
  169.                 end
  170.             else
  171.                 if Magnitude < Distance then
  172.                     Closest = v
  173.                     Distance = Magnitude
  174.                 end
  175.             end
  176.         end
  177.     end
  178.     return Closest
  179. end
  180.  
  181. --Stuff
  182.  
  183. getrawmetatable = getrawmetatable
  184. setreadonly = setreadonly
  185. newcclosure = newcclosure
  186. Drawing = Drawing
  187. Actyrn7104 = Actyrn7104
  188. getnamecallmethod = getnamecallmethod
  189. hookmetamethod = hookmetamethod
  190. getcallingscript = getcallingscript
  191. library = library
  192.  
  193. --[[
  194. syn = syn
  195. getgenv = getgenv
  196. request = request
  197. http_request = http_request
  198. isfolder = isfolder
  199. makefolder = makefolder
  200. ConfigName = ConfigName
  201. listfiles = listfiles
  202. writefile = writefile
  203. readfile = readfile
  204. isfile = isfile
  205. delfile = delfile
  206. --]]
  207.  
  208. library:CheckErrors(true, true, Plr, __, Actyrn7104) -- If you remove there's a chance script wont work, DON'T REMOVE !!
  209.  
  210. local Window = library:CreateWindow("Azure Modded | Actyrn#7104 | .gg/wDngb2mv4H", Vector2.new(492, 592), Enum.KeyCode.RightShift)
  211.  
  212. local MainTab = Window:CreateTab("Main")
  213. local MiscTab = Window:CreateTab("Misc")
  214.  
  215. local MovementSec = MiscTab:CreateSector("Movement", "left")
  216. local SelfDotSec = MiscTab:CreateSector("Self Dot", "left")
  217. local AntiLockSec = MiscTab:CreateSector("Anti Lock", "right")
  218.  
  219. local UtilitiesSec = MainTab:CreateSector("Utilities", "right")
  220. local TargetAimbotSec = MainTab:CreateSector("Target Aimbot", "left")
  221. local CameraAimbotSec = MainTab:CreateSector("Camera Aimbot", "right")
  222.  
  223. -- Toggles
  224.  
  225. -- MAIN --
  226.  
  227. -- Utilities
  228.  
  229. local NoJumpCdToggle = UtilitiesSec:AddToggle("No Jump Cooldown", false, function(x)
  230.     Utilities.NoJumpCooldown = x
  231. end)
  232.  
  233. UtilitiesSec:AddToggle("Anti Stomp", false, function(x)
  234.     Utilities.AntiStomp = x
  235. end)
  236.  
  237. UtilitiesSec:AddToggle("No Slowdown", false, function(x)
  238.     Utilities.NoSlowdown = x
  239. end)
  240.  
  241. -- Target Aimbot
  242.  
  243. TargetAimbotSec:AddToggle("Enabled", false, function(x)
  244.     TargetAimbot.Enabled = x
  245. end)
  246.  
  247. TargetAimbotSec:AddKeybind("Keybind", nil, function(x)
  248.     TargetAimbot.Keybind = x
  249. end)
  250.  
  251. TargetAimbotSec:AddTextbox("Prediction", nil, function(x)
  252.     TargetAimbot.Prediction = x
  253. end)
  254.  
  255. local TargResolverTog = TargetAimbotSec:AddToggle("Antilock Resolver", false, function(x)
  256.     TargetAimbot.Resolver = x
  257. end)
  258.  
  259. TargResolverTog:AddKeybind()
  260.  
  261. TargetAimbotSec:AddSlider("Jump Offset", -3, 0, 3, 100, function(x)
  262.     TargetAimbot.JumpOffset = x
  263.     TargetAimbot.RealJumpOffset = x
  264. end)
  265.  
  266. TargetAimbotSec:AddDropdown("Hit-Part(s)", {
  267.     "Head",
  268.     "UpperTorso",
  269.     "LowerTorso",
  270.     "HumanoidRootPart",
  271.     "RightLowerArm",
  272.     "LeftLowerArm",
  273.     "RightUpperArm",
  274.     "LeftUpperArm",
  275.     "RightUpperLeg",
  276.     "LeftUpperLeg",
  277.     "RightLowerLeg",
  278.     "LeftLowerLeg"
  279. }, {"HumanoidRootPart"}, true, function(x)
  280.     TargetAimbot.HitParts = x
  281. end)
  282.  
  283. TargetAimbotSec:AddDropdown("MousePos Type", {
  284.     "UpdateMousePos",
  285.     "GetMousePos",
  286.     "MousePos"
  287. }, "UpdateMousePos", false, function(x)
  288.     TargetAimbot.MousePosType = x
  289. end)
  290.  
  291. TargetAimbotSec:AddToggle("Notifications", false, function(x)
  292.     TargetAimbot.Notifications = x
  293. end)
  294.  
  295. TargetAimbotSec:AddToggle("Look At", false, function(x)
  296.     TargetAimbot.LookAt = x
  297. end)
  298.  
  299. local ViewAtTog = TargetAimbotSec:AddToggle("View At", false, function(x)
  300.     TargetAimbot.ViewAt = x
  301. end)
  302.  
  303. ViewAtTog:AddKeybind()
  304.  
  305. local TargDotTog = TargetAimbotSec:AddToggle("Dot", false, function(x)
  306.     TargetAimbot.Dot = x
  307. end)
  308.  
  309. TargDotTog:AddColorpicker(Color3.fromRGB(168, 122, 207), function(x)
  310.     TargCursorDot.Color = x
  311.     TargDotFrame.BackgroundColor3 = x
  312. end)
  313.  
  314. local TargTracerTog = TargetAimbotSec:AddToggle("Tracer", false, function(x)
  315.     TargetAimbot.Tracer = x
  316. end)
  317.  
  318. TargTracerTog:AddColorpicker(Color3.fromRGB(168, 122, 207), function(x)
  319.     TargetTracer.Color = x
  320. end)
  321.  
  322. TargetAimbotSec:AddToggle("Dot on Cursor", false, function(x)
  323.     TargetAimbot.DotOnCursor = x
  324. end)
  325.  
  326. local HighlightTog = TargetAimbotSec:AddToggle("Highlight", false, function(x)
  327.     TargetAimbot.Highlight = x
  328. end)
  329.  
  330. HighlightTog:AddColorpicker(Color3.fromRGB(168, 122, 207), function(x)
  331.     Highlight.FillColor = x
  332. end)
  333.  
  334. HighlightTog:AddColorpicker(Color3.fromRGB(88, 65, 108), function(x)
  335.     Highlight.OutlineColor = x
  336. end)
  337.  
  338. TargetAimbotSec:AddToggle("Stats", false, function(x)
  339.     TargetAimbot.Stats = x
  340. end)
  341.  
  342. TargetAimbotSec:AddToggle("Use FOV", false, function(x)
  343.     TargetAimbot.UseFov = x
  344. end)
  345.  
  346. local TargFovTog = TargetAimbotSec:AddToggle("FOV Visible", false, function(x)
  347.     TargFovCircle.Visible = x
  348. end)
  349.  
  350. TargFovTog:AddColorpicker(Color3.fromRGB(81, 14, 181), function(x)
  351.     TargFovCircle.Color = x
  352. end)
  353.  
  354. TargetAimbotSec:AddSlider("FOV Size", 5, 80, 500, 1, function(x)
  355.     TargFovCircle.Radius = x * 2
  356. end)
  357.  
  358. -- Camera Aimbot
  359.  
  360. CameraAimbotSec:AddToggle("Enabled", false, function(x)
  361.     CameraAimbot.Enabled = x
  362. end)
  363.  
  364. CameraAimbotSec:AddKeybind("Keybind", nil, function(x)
  365.     CameraAimbot.Keybind = x
  366. end)
  367.  
  368. CameraAimbotSec:AddTextbox("Prediction", nil, function(x)
  369.     CameraAimbot.Prediction = x
  370. end)
  371.  
  372. local CamResolverTog = CameraAimbotSec:AddToggle("Antilock Resolver", false, function(x)
  373.     CameraAimbot.Resolver = x
  374. end)
  375.  
  376. CamResolverTog:AddKeybind()
  377.  
  378. CameraAimbotSec:AddDropdown("Hit-Part", {
  379.     "Head",
  380.     "HumanoidRootPart",
  381.     "UpperTorso",
  382.     "LowerTorso"
  383. }, "HumanoidRootPart", false, function(x)
  384.     CameraAimbot.HitPart = x
  385. end)
  386.  
  387. CameraAimbotSec:AddToggle("Notifications", false, function(x)
  388.     CameraAimbot.Notifications = x
  389. end)
  390.  
  391. CameraAimbotSec:AddSlider("Jump Offset", -3, 0, 3, 100, function(x)
  392.     CameraAimbot.JumpOffset = x
  393.     CameraAimbot.RealJumpOffset = x
  394. end)
  395.  
  396. CameraAimbotSec:AddToggle("Smoothness", false, function(x)
  397.     CameraAimbot.Smoothness = x
  398. end)
  399.  
  400. CameraAimbotSec:AddTextbox("Smoothing", nil, function(x)
  401.     CameraAimbot.Smoothing = x
  402. end)
  403.  
  404. CameraAimbotSec:AddToggle("Use FOV", false, function(x)
  405.     CameraAimbot.UseFov = x
  406. end)
  407.  
  408. local CamFovTog = CameraAimbotSec:AddToggle("FOV Visible", false, function(x)
  409.     CamFovCircle.Visible = x
  410. end)
  411.  
  412. CamFovTog:AddColorpicker(Color3.fromRGB(81, 14, 181), function(x)
  413.     CamFovCircle.Color = x
  414. end)
  415.  
  416. CameraAimbotSec:AddSlider("FOV Size", 5, 80, 500, 1, function(x)
  417.     CamFovCircle.Radius = x * 2
  418. end)
  419.  
  420. -- MISC --
  421.  
  422. -- Movement
  423.  
  424. local SpeedTog = MovementSec:AddToggle("Speed", false, function(x)
  425.     Movement.SpeedEnabled = x
  426. end)
  427.  
  428. SpeedTog:AddKeybind()
  429.  
  430. MovementSec:AddSlider("Speed Amount", 1, 1, 5000, 1, function(x)
  431.     Movement.SpeedAmount = x / 1000
  432. end)
  433.  
  434. MovementSec:AddToggle("Auto Jump", false, function(x)
  435.     Movement.AutoJump = x
  436. end)
  437.  
  438. local StrafeTog = MovementSec:AddToggle("Target Strafe", false, function(x)
  439.     Movement.StrafeEnabled = x
  440. end)
  441.  
  442. StrafeTog:AddKeybind()
  443.  
  444. MovementSec:AddSlider("Speed", 0.5, 0.5, 10, 2, function(x)
  445.     Movement.StrafeSpeed = x
  446. end)
  447.  
  448. MovementSec:AddSlider("Distance", 1, 1, 20, 2, function(x)
  449.     Movement.StrafeDistance = x
  450. end)
  451.  
  452. MovementSec:AddSlider("Height", 1, 1, 20, 2, function(x)
  453.     Movement.StrafeHeight = x
  454. end)
  455.  
  456. local FlightTog = MovementSec:AddToggle("Flight", false, function(x)
  457.     Movement.FlightEnabled = x
  458. end)
  459.  
  460. FlightTog:AddKeybind()
  461.  
  462. MovementSec:AddSlider("Speed", 1, 1, 5000, 1, function(x)
  463.     Movement.FlightSpeed = x / 20
  464. end)
  465.  
  466. -- Self Dot
  467.  
  468. local SelfDotTog = SelfDotSec:AddToggle("Enabled", false, function(x)
  469.     SelfDot.Enabled = x
  470. end)
  471.  
  472. SelfDotTog:AddColorpicker(Color3.fromRGB(168, 122, 207), function(x)
  473.     SelfDotCircle.Color = x
  474. end)
  475.  
  476. SelfDotSec:AddToggle("Random Aim-Part", false, function(x)
  477.     SelfDot.RandomAimPart = x
  478. end)
  479.  
  480. SelfDotSec:AddSlider("Prediction", 1, 1, 5, 2, function(x)
  481.     SelfDot.Prediction = x / 20
  482. end)
  483.  
  484. SelfDotSec:AddDropdown("Aim-Part", {
  485.     "Head",
  486.     "HumanoidRootPart",
  487.     "UpperTorso",
  488.     "LowerTorso"
  489. }, "HumanoidRootPart", false, function(x)
  490.     SelfDot.AimPart = x
  491.     SelfDot.OldAimPart = x
  492. end)
  493.  
  494. -- Anti Lock
  495.  
  496. local AntiTog = AntiLockSec:AddToggle("Enabled", false, function(x)
  497.     AntiLock.Enabled = x
  498. end)
  499.  
  500. AntiTog:AddKeybind()
  501.  
  502. AntiLockSec:AddDropdown("Mode", {
  503.     "Custom",
  504.     "Prediction Changer",
  505.     "Prediction Disabler",
  506.     "Up", "Down",
  507.     "Prediction Tripler",
  508.     "Prediction Reverser",
  509.     "LookVector",
  510.     "AirOrthodox",
  511.     "Prediction Multiplier",
  512.     "Spinbot Desync"
  513. }, "Custom", false, function(x)
  514.     AntiLock.Mode = x
  515. end)
  516.  
  517. AntiLockSec:AddLabel("Custom")
  518.  
  519. AntiLockSec:AddSlider("Custom X", -10000, 10000, 10000, 1, function(x)
  520.     AntiLock.CustomX = x
  521. end)
  522.  
  523. AntiLockSec:AddSlider("Custom Y", -10000, 10000, 10000, 1, function(x)
  524.     AntiLock.CustomY = x
  525. end)
  526.  
  527. AntiLockSec:AddSlider("Custom Z", -10000, 10000, 10000, 1, function(x)
  528.     AntiLock.CustomZ = x
  529. end)
  530.  
  531. AntiLockSec:AddLabel("LookVector")
  532.  
  533. AntiLockSec:AddSlider("LookVector Amount", -1000, 500, 1000, 1, function(x)
  534.     AntiLock.LookVecAmt = x
  535. end)
  536.  
  537. AntiLockSec:AddLabel("Prediction Changer")
  538.  
  539. AntiLockSec:AddSlider("Prediction Amount", -20, 5, 20, 1, function(x)
  540.     AntiLock.PredChangeAmt = x
  541. end)
  542.  
  543. AntiLockSec:AddLabel("Spinbot Desync")
  544.  
  545. AntiLockSec:AddDropdown("Desync Velocity", {
  546.     "Default",
  547.     "Sky",
  548.     "Underground"
  549. }, "Default", false, function(x)
  550.     if x == "Default" then
  551.         AntiLock.DesyncVel = Vector3.new(9e9, 9e9, 9e9)
  552.     elseif x == "Sky" then
  553.         AntiLock.DesyncVel = Vector3.new(15, 9e9, 15)
  554.     elseif x == "Underground" then
  555.         AntiLock.DesyncVel = Vector3.new(15, -9e9, 15)
  556.     end
  557. end)
  558.  
  559. AntiLockSec:AddSlider("Desync Angles", -50, 0.5, 50, 2, function(x)
  560.     AntiLock.DesyncAngles = x
  561. end)
  562.  
  563. -- Code
  564.  
  565. spawn(function()
  566.     TargetPlrStats.Name = "Actyrn#7104"
  567.     TargetPlrStats.Parent = game.CoreGui
  568.     TargetPlrStats.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  569.  
  570.     Background.Name = "Actyrn#7104"
  571.     Background.Parent = TargetPlrStats
  572.     Background.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  573.     Background.BorderSizePixel = 0
  574.     Background.Position = UDim2.new(0.388957828, 0, 0.700122297, 0)
  575.     Background.Size = UDim2.new(0, 358, 0, 71)
  576.     Background.Visible = false
  577.  
  578.     Picture.Name = "Actyrn#7104"
  579.     Picture.Parent = Background
  580.     Picture.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  581.     Picture.BorderSizePixel = 0
  582.     Picture.Position = UDim2.new(0.0279329624, 0, 0.0704225376, 0)
  583.     Picture.Size = UDim2.new(0, 59, 0, 59)
  584.     Picture.Transparency = 1
  585.     Picture.Image = "rbxasset://textures/ui/GuiImagePlaceholder.png"
  586.  
  587.     Top.Name = "Actyrn#7104"
  588.     Top.Parent = Background
  589.     Top.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  590.     Top.BorderSizePixel = 0
  591.     Top.Position = UDim2.new(0, 0, -0.101449274, 0)
  592.     Top.Size = UDim2.new(0, 358, 0, 7)
  593.  
  594.     UIGradient1.Color = ColorSequence.new{ColorSequenceKeypoint.new(0, Color3.fromRGB(184, 159, 227)), ColorSequenceKeypoint.new(1, Color3.fromRGB(102, 88, 156))}
  595.     UIGradient1.Rotation = 90
  596.     UIGradient1.Parent = Top
  597.  
  598.     UIGradient2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0, Color3.fromRGB(52, 52, 52)), ColorSequenceKeypoint.new(1, Color3.fromRGB(0, 0, 0))}
  599.     UIGradient2.Rotation = 90
  600.     UIGradient2.Parent = Background
  601.  
  602.     UIGradient3.Color = ColorSequence.new{ColorSequenceKeypoint.new(0, Color3.fromRGB(58, 58, 58)), ColorSequenceKeypoint.new(1, Color3.fromRGB(30, 30, 30))}
  603.     UIGradient3.Rotation = 90
  604.     UIGradient3.Parent = HealthBarBackground
  605.  
  606.     UIGradient4.Color = ColorSequence.new{ColorSequenceKeypoint.new(0, Color3.fromRGB(184, 159, 227)), ColorSequenceKeypoint.new(1, Color3.fromRGB(102, 88, 156))}
  607.     UIGradient4.Rotation = 90
  608.     UIGradient4.Parent = HealthBar
  609.  
  610.     HealthBarBackground.Name = "Actyrn#7104"
  611.     HealthBarBackground.Parent = Background
  612.     HealthBarBackground.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  613.     HealthBarBackground.BorderSizePixel = 0
  614.     HealthBarBackground.Position = UDim2.new(0.215083793, 0, 0.348234326, 0)
  615.     HealthBarBackground.Size = UDim2.new(0, 270, 0, 19)
  616.     HealthBarBackground.Transparency = 1
  617.  
  618.     HealthBar.Name = "Actyrn#7104"
  619.     HealthBar.Parent = HealthBarBackground
  620.     HealthBar.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  621.     HealthBar.BorderSizePixel = 0
  622.     HealthBar.Position = UDim2.new(-0.00336122862, 0, 0.164894029, 0)
  623.     HealthBar.Size = UDim2.new(0, 130, 0, 19)
  624.  
  625.     NameOfTarget.Name = "Actyrn#7104"
  626.     NameOfTarget.Parent = Background
  627.     NameOfTarget.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  628.     NameOfTarget.BackgroundTransparency = 1
  629.     NameOfTarget.Position = UDim2.new(0.220670387, 0, 0.0704225376, 0)
  630.     NameOfTarget.Size = UDim2.new(0, 268, 0, 19)
  631.     NameOfTarget.Font = Enum.Font.Code
  632.     NameOfTarget.TextColor3 = Color3.fromRGB(255, 255, 255)
  633.     NameOfTarget.TextScaled = true
  634.     NameOfTarget.TextSize = 14
  635.     NameOfTarget.TextStrokeTransparency = 0
  636.     NameOfTarget.TextWrapped = true
  637.  
  638.     SelfDotCircle.Visible = false
  639.     SelfDotCircle.Filled = true
  640.     SelfDotCircle.Thickness = 1
  641.     SelfDotCircle.Transparency = 1
  642.     SelfDotCircle.Radius = 7
  643.  
  644.     TargCursorDot.Filled = true
  645.     TargCursorDot.Visible = false
  646.     TargCursorDot.Thickness = 2
  647.     TargCursorDot.Radius =  7
  648.     TargCursorDot.NumSides = 69
  649.  
  650.     TargDotBillboard.Name = "Actyrn#7104"
  651.     TargDotBillboard.Adornee = TargDotParent
  652.     TargDotBillboard.Size = UDim2.new(0.6, 0, 0.6, 0)
  653.     TargDotBillboard.AlwaysOnTop = true
  654.     TargDotFrame.Size = UDim2.new(1, 0, 1, 0)
  655.     TargDotFrame.BackgroundTransparency = 0
  656.     newUiCornor.CornerRadius = UDim.new(50, 50)
  657.     TargDotParent.CanCollide = false
  658.     TargDotParent.Anchored = true
  659.     TargDotParent.CFrame = CFrame.new(0, 9999, 0)
  660.     TargDotParent.Transparency = 1
  661.  
  662.     TargFovCircle.Filled = false
  663.     TargFovCircle.Thickness = 1
  664.     TargFovCircle.Transparency = 1
  665.  
  666.     CamFovCircle.Filled = false
  667.     CamFovCircle.Thickness = 1
  668.     CamFovCircle.Transparency = 1
  669.  
  670.     TargetTracer.Thickness = 2
  671. end)
  672.  
  673. -- Heartbeat Functions
  674.  
  675. spawn(function()
  676.     RunService.Heartbeat:Connect(function()
  677.         local Pos, OnScreen
  678.  
  679.         if TargetAimbot.Resolver then
  680.             Pos, OnScreen = workspace.CurrentCamera:WorldToViewportPoint(TargetPlr.Character[TargetAimbot.RealHitPart].Position + (TargetPlr.Character.Humanoid.MoveDirection * TargetAimbot.Prediction * TargetPlr.Character.Humanoid.WalkSpeed or 16))
  681.         else
  682.             Pos, OnScreen = workspace.CurrentCamera:WorldToViewportPoint(TargetPlr.Character[TargetAimbot.RealHitPart].Position + (TargetPlr.Character[TargetAimbot.RealHitPart].Velocity * TargetAimbot.Prediction))
  683.         end
  684.  
  685.         if TargetAimbot.Enabled and TargBindEnabled and TargetAimbot.Tracer and OnScreen then
  686.             TargetTracer.Visible = true
  687.             TargetTracer.From = Vector2.new(UserInputService:GetMouseLocation().X, UserInputService:GetMouseLocation().Y)
  688.             TargetTracer.To = Vector2.new(Pos.X, Pos.Y)
  689.         else
  690.             TargetTracer.Visible = false
  691.         end
  692.     end)
  693. end)
  694.  
  695. spawn(function()
  696.     RunService.Heartbeat:Connect(function()
  697.         local Pos, OnScreen =
  698.             workspace.CurrentCamera:WorldToViewportPoint(Plr.Character[SelfDot.AimPart].Position + (Plr.Character[SelfDot.AimPart].AssemblyLinearVelocity * SelfDot.Prediction))
  699.  
  700.         if SelfDot.Enabled and OnScreen then
  701.             SelfDotCircle.Visible = true
  702.             SelfDotCircle.Position = Vector2.new(Pos.X, Pos.Y)
  703.         else
  704.             SelfDotCircle.Visible = false
  705.         end
  706.     end)
  707. end)
  708.  
  709. spawn(function()
  710.     RunService.Heartbeat:Connect(function()
  711.         if TargetAimbot.Enabled and TargBindEnabled and TargetAimbot.Stats then
  712.             Background.Visible = true
  713.             NameOfTarget.Text = tostring(TargetPlr.Character.Humanoid.DisplayName).." ["..tostring(TargetPlr.Name).."]"
  714.             Picture.Image = "rbxthumb://type=AvatarHeadShot&id=" ..TargetPlr.UserId.. "&w=420&h=420"
  715.             HealthBar:TweenSize(UDim2.new(TargetPlr.Character.Humanoid.Health / TargetPlr.Character.Humanoid.MaxHealth, 0, 1, 0), "In", "Linear", 0.25)
  716.         else
  717.             Background.Visible = false
  718.         end
  719.     end)
  720. end)
  721.  
  722. spawn(function()
  723.     RunService.Heartbeat:Connect(function()
  724.         if Movement.SpeedEnabled then
  725.             Plr.Character.HumanoidRootPart.CFrame =
  726.                 Plr.Character.HumanoidRootPart.CFrame +
  727.                 Plr.Character.Humanoid.MoveDirection * Movement.SpeedAmount
  728.         end
  729.     end)
  730. end)
  731.  
  732. spawn(function()
  733.     RunService.Heartbeat:Connect(function()
  734.         if TargetAimbot.Enabled and TargBindEnabled and Movement.StrafeEnabled then
  735.             StrafeSpeed2 = StrafeSpeed2 + Movement.StrafeSpeed
  736.  
  737.             Plr.Character.HumanoidRootPart.CFrame =
  738.                 TargetPlr.Character.HumanoidRootPart.CFrame *
  739.                 CFrame.Angles(0, math.rad(StrafeSpeed2), 0) *
  740.                 CFrame.new(0, Movement.StrafeHeight, Movement.StrafeDistance)
  741.         end
  742.     end)
  743. end)
  744.  
  745. spawn(function()
  746.     RunService.Heartbeat:Connect(function()
  747.         if Plr.Character.Humanoid.Health <= 10 then
  748.             AntiTog:Set(false)
  749.         end
  750.     end)
  751. end)
  752.  
  753. spawn(function()
  754.     local Char, Hrp
  755.     RunService.Heartbeat:Connect(function()
  756.         if AntiLock.Enabled and not (Char and Char.Parent and Hrp and Hrp.Parent) then
  757.             Char = Plr.Character
  758.             Hrp = Char.HumanoidRootPart
  759.         end
  760.  
  761.         if AntiLock.Enabled and Char and Char.Parent and Hrp and Hrp.Parent then
  762.             local Vel, AlVel =
  763.                 Hrp.Velocity, Hrp.AssemblyLinearVelocity
  764.  
  765.             if AntiLock.Mode == "Custom" then
  766.                 Hrp.Velocity = Vector3.new(AntiLock.CustomX, AntiLock.CustomY, AntiLock.CustomZ)
  767.                 RunService.RenderStepped:Wait()
  768.                 Hrp.Velocity = Vel
  769.  
  770.             elseif AntiLock.Mode == "Prediction Changer" then
  771.                 Hrp.Velocity = Vel * AntiLock.PredChangeAmt
  772.                 RunService.RenderStepped:Wait()
  773.                 Hrp.Velocity = Vel
  774.  
  775.             elseif AntiLock.Mode == "Prediction Disabler" then
  776.                 Hrp.Velocity = Vel * 0
  777.                 RunService.RenderStepped:Wait()
  778.                 Hrp.Velocity = Vel
  779.  
  780.             elseif AntiLock.Mode == "Up" then
  781.                 Hrp.Velocity = Vector3.new(0, 9e9, 0)
  782.                 RunService.RenderStepped:Wait()
  783.                 Hrp.Velocity = Vel
  784.  
  785.             elseif AntiLock.Mode == "Down" then
  786.                 Hrp.Velocity = Vector3.new(0, -9e9, 0)
  787.                 RunService.RenderStepped:Wait()
  788.                 Hrp.Velocity = Vel
  789.  
  790.             elseif AntiLock.Mode == "Prediction Tripler" then
  791.                 Hrp.Velocity = Vel * 3
  792.                 RunService.RenderStepped:Wait()
  793.                 Hrp.Velocity = Vel
  794.  
  795.             elseif AntiLock.Mode == "Prediction Reverser" then
  796.                 Hrp.Velocity = Vel * -1
  797.                 RunService.RenderStepped:Wait()
  798.                 Hrp.Velocity = Vel
  799.  
  800.             elseif AntiLock.Mode == "LookVector" then
  801.                 Hrp.Velocity = Hrp.CFrame.lookVector * AntiLock.LookVecAmt
  802.                 RunService.RenderStepped:Wait()
  803.                 Hrp.Velocity = Vel
  804.  
  805.             elseif AntiLock.Mode == "AirOrthodox" then
  806.                 Hrp.Velocity = Vector3.new(77, 77, 77)
  807.                 RunService.RenderStepped:Wait()
  808.                 Hrp.Velocity = Vel
  809.  
  810.             elseif AntiLock.Mode == "Prediction Multiplier" then
  811.                 Hrp.Velocity = Vel * 7
  812.                 RunService.RenderStepped:Wait()
  813.                 Hrp.Velocity = Vel
  814.  
  815.             elseif AntiLock.Mode == "Spinbot Desync" then
  816.                 Hrp.AssemblyLinearVelocity = AntiLock.DesyncVel
  817.                 Hrp.CFrame = Hrp.CFrame * CFrame.Angles(0, math.rad(AntiLock.DesyncAngles), 0)
  818.                 RunService.RenderStepped:Wait()
  819.                 Hrp.AssemblyLinearVelocity = AlVel
  820.             end
  821.         end
  822.     end)
  823. end)
  824.  
  825. spawn(function()
  826.     RunService.Heartbeat:Connect(function()
  827.         if Movement.AutoJump and Plr.Character.Humanoid:GetState() ~= Enum.HumanoidStateType.Freefall and Plr.Character.Humanoid.MoveDirection.Magnitude > 0 then
  828.             Plr.Character.Humanoid:ChangeState("Jumping")
  829.             NoJumpCdToggle:Set(true)
  830.         end
  831.     end)
  832. end)
  833.  
  834. spawn(function()
  835.     RunService.Heartbeat:Connect(function()
  836.         Plr.Character.Humanoid.UseJumpPower = not Utilities.NoJumpCooldown
  837.     end)
  838. end)
  839.  
  840. spawn(function()
  841.     RunService.Heartbeat:Connect(function()
  842.         if Utilities.AntiStomp and Plr.Character.Humanoid.Health <= 5 then
  843.             task.wait()
  844.             Plr.Character:Destroy()
  845.         end
  846.     end)
  847. end)
  848.  
  849. spawn(function()
  850.     RunService.Heartbeat:Connect(function()
  851.         if Utilities.NoSlowdown then
  852.             local SlowdownEffects =
  853.                 Plr.Character.BodyEffects.Movement:FindFirstChild("NoJumping") or
  854.                 Plr.Character.BodyEffects.Movement:FindFirstChild("ReduceWalk") or
  855.                 Plr.Character.BodyEffects.Movement:FindFirstChild("NoWalkSpeed")
  856.  
  857.             if SlowdownEffects then
  858.                 SlowdownEffects:Destroy()
  859.             end
  860.  
  861.             if Plr.Character.BodyEffects.Reload.Value then
  862.                 Plr.Character.BodyEffects.Reload.Value = false
  863.             end
  864.         end
  865.     end)
  866. end)
  867.  
  868. -- Stepped Functions
  869.  
  870. spawn(function()
  871.     RunService.Stepped:Connect(function()
  872.         if SelfDot.RandomAimPart then
  873.             local RandomParts = {
  874.                 "Head",
  875.                 "UpperTorso",
  876.                 "LowerTorso",
  877.                 "HumanoidRootPart",
  878.                 "RightUpperLeg",
  879.                 "LeftUpperLeg",
  880.                 "RightUpperArm",
  881.                 "LeftUpperArm"
  882.             }
  883.             SelfDot.AimPart = RandomParts[math.random(1, #RandomParts)]
  884.             wait(0.6)
  885.         else
  886.             SelfDot.AimPart = SelfDot.OldAimPart
  887.         end
  888.     end)
  889. end)
  890.  
  891. spawn(function()
  892.     RunService.Stepped:Connect(function()
  893.         pcall(function()
  894.             if Movement.FlightEnabled then
  895.                 local FlyVelocity = Vector3.new(0, 0, 0)
  896.  
  897.                 if not UserInputService:GetFocusedTextBox() then
  898.  
  899.                     if UserInputService:IsKeyDown(Enum.KeyCode.W) then
  900.                         FlyVelocity = FlyVelocity + (workspace.CurrentCamera.CoordinateFrame.lookVector * Movement.FlightSpeed)
  901.                     end
  902.  
  903.                     if UserInputService:IsKeyDown(Enum.KeyCode.A) then
  904.                         FlyVelocity = FlyVelocity + (workspace.CurrentCamera.CoordinateFrame.rightVector * -Movement.FlightSpeed)
  905.                     end
  906.  
  907.                     if UserInputService:IsKeyDown(Enum.KeyCode.S) then
  908.                         FlyVelocity = FlyVelocity + (workspace.CurrentCamera.CoordinateFrame.lookVector * -Movement.FlightSpeed)
  909.                     end
  910.  
  911.                     if UserInputService:IsKeyDown(Enum.KeyCode.D) then
  912.                         FlyVelocity = FlyVelocity + (workspace.CurrentCamera.CoordinateFrame.rightVector * Movement.FlightSpeed)
  913.                     end
  914.                 end
  915.  
  916.                 Plr.Character.HumanoidRootPart.Velocity = FlyVelocity
  917.                 Plr.Character.Humanoid:ChangeState("Freefall")
  918.             else
  919.                 Plr.Character.Humanoid:ChangeState("Landing")
  920.             end
  921.         end)
  922.     end)
  923. end)
  924.  
  925. spawn(function()
  926.     RunService.Stepped:Connect(function()
  927.         if TargetPlr.Character.Humanoid:GetState() == Enum.HumanoidStateType.Freefall then
  928.             TargetAimbot.RealJumpOffset = TargetAimbot.JumpOffset
  929.         else
  930.             TargetAimbot.RealJumpOffset = 0
  931.         end
  932.     end)
  933. end)
  934.  
  935. spawn(function()
  936.     RunService.Stepped:Connect(function()
  937.         if CamlockPlr.Character.Humanoid:GetState() == Enum.HumanoidStateType.Freefall then
  938.             CameraAimbot.RealJumpOffset = CameraAimbot.JumpOffset
  939.         else
  940.             CameraAimbot.RealJumpOffset = 0
  941.         end
  942.     end)
  943. end)
  944.  
  945. spawn(function()
  946.     RunService.Stepped:Connect(function()
  947.         if TargetAimbot.Enabled and TargBindEnabled and TargetAimbot.ViewAt then
  948.             workspace.CurrentCamera.CameraSubject = TargetPlr.Character.Humanoid
  949.         else
  950.             workspace.CurrentCamera.CameraSubject = Plr.Character.Humanoid
  951.         end
  952.     end)
  953. end)
  954.  
  955. spawn(function()
  956.     RunService.Stepped:Connect(function()
  957.         if TargetAimbot.Enabled and TargBindEnabled and TargetAimbot.Highlight then
  958.             Highlight.Parent = TargetPlr.Character
  959.         else
  960.             Highlight.Parent = game.CoreGui
  961.         end
  962.     end)
  963. end)
  964.  
  965. spawn(function()
  966.     RunService.Stepped:Connect(function()
  967.         if TargetAimbot.Enabled and TargetAimbot.Dot then
  968.             if TargetAimbot.Dot and TargBindEnabled then
  969.                 if TargetAimbot.Resolver then
  970.                     TargDotParent.CFrame = CFrame.new(TargetPlr.Character[TargetAimbot.RealHitPart].Position + (TargetPlr.Character.Humanoid.MoveDirection * TargetAimbot.Prediction * TargetPlr.Character.Humanoid.WalkSpeed or 16))
  971.                 else
  972.                     TargDotParent.CFrame = CFrame.new(TargetPlr.Character[TargetAimbot.RealHitPart].Position + Vector3.new(0, TargetAimbot.RealJumpOffset, 0) + (TargetPlr.Character[TargetAimbot.RealHitPart].Velocity * TargetAimbot.Prediction))
  973.                 end
  974.  
  975.                 TargCursorDot.Visible = false
  976.             else
  977.                 TargDotParent.CFrame = CFrame.new(0, 9999, 0)
  978.  
  979.                 if TargetAimbot.DotOnCursor then
  980.                     TargCursorDot.Visible = true
  981.                     TargCursorDot.Position = Vector2.new(UserInputService:GetMouseLocation().X, UserInputService:GetMouseLocation().Y)
  982.                 else
  983.                     TargCursorDot.Visible = false
  984.                 end
  985.             end
  986.         else
  987.             TargDotParent.CFrame = CFrame.new(0, 9999, 0)
  988.             TargCursorDot.Visible = false
  989.         end
  990.     end)
  991. end)
  992.  
  993. spawn(function()
  994.     RunService.Stepped:Connect(function()
  995.         TargetAimbot.RealHitPart = TargetAimbot.HitParts[math.random(1, #TargetAimbot.HitParts)]
  996.         wait(0.6)
  997.     end)
  998. end)
  999.  
  1000. -- RenderStepped Functions
  1001.  
  1002. spawn(function()
  1003.     RunService.RenderStepped:Connect(function()
  1004.         if CameraAimbot.Enabled and CamBindEnabled then
  1005.             if CameraAimbot.Resolver then
  1006.                 if CameraAimbot.Smoothness then
  1007.                     workspace.CurrentCamera.CFrame = workspace.CurrentCamera.CFrame:Lerp(CFrame.new(workspace.CurrentCamera.CFrame.p,
  1008.                         CamlockPlr.Character[CameraAimbot.HitPart].Position +
  1009.                             CamlockPlr.Character.Humanoid.MoveDirection * CameraAimbot.Prediction * CamlockPlr.Character.Humanoid.WalkSpeed or 16),
  1010.                         CameraAimbot.Smoothing, Enum.EasingStyle["Linear"], Enum.EasingDirection["InOut"])
  1011.                 else
  1012.                     workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.p,
  1013.                         CamlockPlr.Character[CameraAimbot.HitPart].Position +
  1014.                             CamlockPlr.Character.Humanoid.MoveDirection * CameraAimbot.Prediction * CamlockPlr.Character.Humanoid.WalkSpeed or 16)
  1015.                 end
  1016.             else
  1017.                 if CameraAimbot.Smoothness then
  1018.                     workspace.CurrentCamera.CFrame = workspace.CurrentCamera.CFrame:Lerp(CFrame.new(workspace.CurrentCamera.CFrame.p,
  1019.                         CamlockPlr.Character[CameraAimbot.HitPart].Position + Vector3.new(0, CameraAimbot.RealJumpOffset, 0) +
  1020.                             CamlockPlr.Character[CameraAimbot.HitPart].Velocity * CameraAimbot.Prediction),
  1021.                         CameraAimbot.Smoothing, Enum.EasingStyle["Linear"], Enum.EasingDirection["InOut"])
  1022.                 else
  1023.                     workspace.CurrentCamera.CFrame = CFrame.new(workspace.CurrentCamera.CFrame.p,
  1024.                         CamlockPlr.Character[CameraAimbot.HitPart].Position + Vector3.new(0, CameraAimbot.RealJumpOffset, 0) +
  1025.                             CamlockPlr.Character[CameraAimbot.HitPart].Velocity * CameraAimbot.Prediction)
  1026.                 end
  1027.             end
  1028.         end
  1029.     end)
  1030. end)
  1031.  
  1032. spawn(function()
  1033.     RunService.RenderStepped:Connect(function()
  1034.         TargFovCircle.Position =
  1035.             Vector2.new(UserInputService:GetMouseLocation().X, (UserInputService:GetMouseLocation().Y))
  1036.  
  1037.         CamFovCircle.Position =
  1038.             Vector2.new(UserInputService:GetMouseLocation().X, (UserInputService:GetMouseLocation().Y))
  1039.     end)
  1040. end)
  1041.  
  1042. spawn(function()
  1043.     RunService.RenderStepped:Connect(function()
  1044.         if TargetAimbot.Enabled and TargBindEnabled and TargetAimbot.LookAt then
  1045.             Plr.Character.HumanoidRootPart.CFrame =
  1046.                 CFrame.new(Plr.Character.HumanoidRootPart.CFrame.Position,
  1047.                     Vector3.new(TargetPlr.Character.HumanoidRootPart.CFrame.X,
  1048.                         Plr.Character.HumanoidRootPart.CFrame.Position.Y,
  1049.                         TargetPlr.Character.HumanoidRootPart.CFrame.Z))
  1050.  
  1051.             Plr.Character.Humanoid.AutoRotate = false
  1052.         else
  1053.             Plr.Character.Humanoid.AutoRotate = true
  1054.         end
  1055.     end)
  1056. end)
  1057.  
  1058. -- InputBegan Functions
  1059.  
  1060. spawn(function()
  1061.     UserInputService.InputBegan:Connect(function(Key)
  1062.         if Key.KeyCode == TargetAimbot.Keybind and TargetAimbot.Enabled and not UserInputService:GetFocusedTextBox() then
  1063.             TargBindEnabled = not TargBindEnabled
  1064.  
  1065.             if TargBindEnabled then
  1066.                 TargetPlr = ClosestPlr(TargetAimbot.UseFov, TargFovCircle)
  1067.  
  1068.                 if TargetAimbot.Notifications then
  1069.                     NotifLib.Notify({
  1070.                         Title = "Azure Modded [Actyrn#7104]",
  1071.                         Description = "Targeting: " ..tostring(TargetPlr.Character.Humanoid.DisplayName),
  1072.                         Duration = 3
  1073.                     })
  1074.                 end
  1075.             else
  1076.                 if TargetAimbot.Notifications then
  1077.                     NotifLib.Notify({
  1078.                         Title = "Azure Modded [Actyrn#7104]",
  1079.                         Description = "Untargeting: " ..tostring(TargetPlr.Character.Humanoid.DisplayName),
  1080.                         Duration = 3
  1081.                     })
  1082.                 end
  1083.             end
  1084.         end
  1085.     end)
  1086. end)
  1087.  
  1088. spawn(function()
  1089.     UserInputService.InputBegan:Connect(function(Key)
  1090.         if Key.KeyCode == CameraAimbot.Keybind and not UserInputService:GetFocusedTextBox() then
  1091.             CamBindEnabled = not CamBindEnabled
  1092.  
  1093.             if CamBindEnabled then
  1094.                 CamlockPlr = ClosestPlr(CameraAimbot.UseFov, CamFovCircle)
  1095.  
  1096.                 if CameraAimbot.Notifications then
  1097.                     NotifLib.Notify({
  1098.                         Title = "Azure Modded [Actyrn#7104]",
  1099.                         Description = "Targeting: " ..tostring(CamlockPlr.Character.Humanoid.DisplayName),
  1100.                         Duration = 3
  1101.                     })
  1102.                 end
  1103.             else
  1104.                 if CameraAimbot.Notifications then
  1105.                     NotifLib.Notify({
  1106.                         Title = "Azure Modded [Actyrn#7104]",
  1107.                         Description = "Untargeting: " ..tostring(CamlockPlr.Character.Humanoid.DisplayName),
  1108.                         Duration = 3
  1109.                     })
  1110.                 end
  1111.             end
  1112.         end
  1113.     end)
  1114. end)
  1115.  
  1116. -- Anticheat bypass(dahood), thing for target aim, and no recoil(universal)
  1117.  
  1118. assert(getrawmetatable)
  1119. setreadonly(Gmt, false)
  1120.  
  1121. game.CorePackages.Packages:Destroy()
  1122.  
  1123. Gmt.__namecall = newcclosure(function(self, ...)
  1124.     local Args = {...}
  1125.  
  1126.     if tostring(Args[1]) == "BreathingHAMON" then
  1127.         return
  1128.     elseif tostring(Args[1]) == "TeleportDetect" then
  1129.         return
  1130.     elseif tostring(Args[1]) == "JJARC" then
  1131.         return
  1132.     elseif tostring(Args[1]) == "TakePoisonDamage" then
  1133.         return
  1134.     elseif tostring(Args[1]) == "CHECKER_1" then
  1135.         return
  1136.     elseif tostring(Args[1]) == "CHECKER" then
  1137.         return
  1138.     elseif tostring(Args[1]) == "GUI_CHECK" then
  1139.         return
  1140.     elseif tostring(Args[1]) == "OneMoreTime" then
  1141.         return
  1142.     elseif tostring(Args[1]) == "checkingSPEED" then
  1143.         return
  1144.     elseif tostring(Args[1]) == "BANREMOTE" then
  1145.         return
  1146.     elseif tostring(Args[1]) == "PERMAIDBAN" then
  1147.         return
  1148.     elseif tostring(Args[1]) == "KICKREMOTE" then
  1149.         return
  1150.     elseif tostring(Args[1]) == "BR_KICKPC" then
  1151.         return
  1152.     elseif tostring(Args[1]) == "FORCEFIELD" then
  1153.         return
  1154.     elseif tostring(Args[1]) == "Christmas_Sock" then
  1155.         return
  1156.     elseif tostring(Args[1]) == "VirusCough" then
  1157.         return
  1158.     elseif tostring(Args[1]) == "Symbiote" then
  1159.         return
  1160.     elseif tostring(Args[1]) == "Symbioted" then
  1161.         return
  1162.     end
  1163.     return Old(self, ...)
  1164. end)
  1165.  
  1166. Gmt.__namecall = newcclosure(function(...)
  1167.     local Args = {...}
  1168.  
  1169.     if TargetAimbot.Enabled and TargBindEnabled and getnamecallmethod() == "FireServer" and Args[2] == TargetAimbot.MousePosType then
  1170.         if TargetAimbot.Resolver then
  1171.             Args[3] = TargetPlr.Character[TargetAimbot.RealHitPart].Position + (TargetPlr.Character.Humanoid.MoveDirection * TargetAimbot.Prediction * TargetPlr.Character.Humanoid.WalkSpeed or 16)
  1172.         else
  1173.             Args[3] = TargetPlr.Character[TargetAimbot.RealHitPart].Position + Vector3.new(0, TargetAimbot.RealJumpOffset, 0) + (TargetPlr.Character[TargetAimbot.RealHitPart].Velocity * TargetAimbot.Prediction)
  1174.         end
  1175.  
  1176.         return Old(unpack(Args))
  1177.     end
  1178.     return Old(...)
  1179. end)
  1180.  
  1181. NewIndex = hookmetamethod(game, "__newindex", function(Self, Index, Value)
  1182.     if tostring(getcallingscript()) == "Framework" and tostring(Self):lower():find("camera") and tostring(Index) == "CFrame" then
  1183.         return
  1184.     end
  1185.     return NewIndex(Self, Index, Value)
  1186. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement