local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/miroeramaa/TurtleLib/main/TurtleUiLib.lua"))() loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/Aimbot-V2/main/Resources/Scripts/Raw%20Main.lua"))() getgenv().Aimbot.Settings.Enabled = false getgenv().Aimbot.FOVSettings.Sides = 15 getgenv().Aimbot.FOVSettings.Visible = false getgenv().Aimbot.FOVSettings.Thickness = 2 local combat = library:Window("Combat") local visuals = library:Window("Visuals") local misc = library:Window("Misc") local InfiniteJump = false local g_mod = false _G.high_esp = false game:GetService("UserInputService").JumpRequest:Connect(function() if InfiniteJump == true then game:GetService "Players".LocalPlayer.Character:FindFirstChildOfClass('Humanoid'):ChangeState("Jumping") end end) combat:Toggle("Aimbot", false, function(bool) getgenv().Aimbot.Settings.Enabled = bool end) combat:Toggle("FOV Circle", false, function(bool) getgenv().Aimbot.FOVSettings.Visible = bool end) combat:Slider("FOV",50,250,190, function(value) print(value) getgenv().Aimbot.FOVSettings.Amount = value end) combat:ColorPicker("FOV Color", Color3.fromRGB(255, 255, 255), function(color) getgenv().Aimbot.FOVSettings.Color = color end) misc:Button("SpeedBoost", function() local mt = getrawmetatable(game) local backup backup = hookfunction(mt.__newindex, newcclosure(function(self, key, value) if key == "WalkSpeed" then value = 23 end return backup(self, key, value) end)) end) misc:Toggle("Inf Jump", false, function(bool) InfiniteJump = bool end) misc:Toggle("GunMods", false, function(bool) g_mod = bool end) visuals:Toggle("ESP", false, function(bool) _G.high_esp = bool if bool == false then for _,v in pairs(game.Workspace:GetChildren()) do if v:FindFirstChildWhichIsA("Humanoid") then if v:FindFirstChildWhichIsA("Highlight") then v:FindFirstChildWhichIsA("Highlight"):Destroy() end end end end end) visuals:ColorPicker("ESP Color", Color3.fromRGB(255, 255, 255), function(color) for _,v in pairs(game.Workspace:GetDescendants()) do if v.Name == "penis" then pcall(function() v.FillColor = color end) end end end) game:GetService("RunService").Heartbeat:Connect(function() if _G.high_esp == true then for _,v in pairs(game.Workspace:GetChildren()) do if v:FindFirstChildWhichIsA("Humanoid") then if not v:FindFirstChildWhichIsA("Highlight") then local h = Instance.new("Highlight",v) h.Name = "penis" h.FillTransparency = 0.1 h.OutlineTransparency = 1 h.FillColor = Color3.new(0.666667, 0, 1) end end end end end) while wait(1) do if g_mod == true then for i, v in next, getgc(true) do if type(v) == "table" then if rawget(v, "LoadedAmmo") then v.LoadedAmmo = 10000000000 v.RecoilFactor = 0 v.Spread = 0 end if rawget(v, "ReloadTime") then v.ReloadTime = 0 v.EquipTime = 0 v.LoadCapacity = 10000000000 end end end end end