Advertisement
kingmohamed

Arsenal (Real)

Oct 27th, 2024 (edited)
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.30 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Arsenal | Mobile", "BloodTheme")
  3.  
  4. -- Tabs
  5. local combat = Window:NewTab("Combat")
  6. local gunmods = Window:NewTab("GunMods")
  7. local player = Window:NewTab("Player")
  8. local misc = Window:NewTab("Misc")
  9.  
  10. -- Sections
  11. local Combat = combat:NewSection("Combat LoL")
  12. local GunMods = gunmods:NewSection("GunMods LoL")
  13. local Player = player:NewSection("Player LoL")
  14. local Misc = misc:NewSection("Misc LoL")
  15.  
  16. -- Silent Aim
  17. Combat:NewButton("Silent Aim", "Enables silent aim for pinpoint targeting.", function()
  18. game:GetService("StarterGui"):SetCore("SendNotification", {
  19. Title = "Silent Aim",
  20. Text = "Silent Aim Activated",
  21. Duration = 5
  22. })
  23.  
  24. local Camera = workspace.CurrentCamera
  25. local Players = game.Players
  26. local LocalPlayer = Players.LocalPlayer
  27.  
  28. function GetClosestEnemy()
  29. local closest, shortestDistance = nil, math.huge
  30. for _, player in pairs(Players:GetPlayers()) do
  31. if player ~= LocalPlayer and player.Team ~= LocalPlayer.Team and player.Character then
  32. local head = player.Character:FindFirstChild("Head")
  33. if head then
  34. local screenPos, visible = Camera:WorldToScreenPoint(head.Position)
  35. local mousePosition = Vector2.new(Camera.ViewportSize.X / 2, Camera.ViewportSize.Y / 2)
  36. local distance = (mousePosition - Vector2.new(screenPos.X, screenPos.Y)).Magnitude
  37. if visible and distance < shortestDistance then
  38. closest = player
  39. shortestDistance = distance
  40. end
  41. end
  42. end
  43. end
  44. return closest
  45. end
  46.  
  47. local mt = getrawmetatable(game)
  48. local originalNamecall = mt.__namecall
  49. setreadonly(mt, false)
  50.  
  51. mt.__namecall = newcclosure(function(self, ...)
  52. local args = { ... }
  53. local method = getnamecallmethod()
  54. if method == "FindPartOnRayWithIgnoreList" and not checkcaller() then
  55. local enemy = GetClosestEnemy()
  56. if enemy and enemy.Character then
  57. local head = enemy.Character:FindFirstChild("Head")
  58. if head then
  59. args[1] = Ray.new(Camera.CFrame.Position, (head.Position - Camera.CFrame.Position).Unit * 1000)
  60. return originalNamecall(self, unpack(args))
  61. end
  62. end
  63. end
  64. return originalNamecall(self, ...)
  65. end)
  66.  
  67. setreadonly(mt, true)
  68. end)
  69.  
  70. -- Aimbot Toggle
  71. Combat:NewToggle("Aimbot", "Enables aimbot for easier targeting.", function(state)
  72. getgenv().Options.Enabled = state
  73. end)
  74.  
  75. local Players = game:GetService("Players")
  76. local RunService = game:GetService("RunService")
  77. local UserInputService = game:GetService("UserInputService")
  78. local GuiService = game:GetService("GuiService")
  79. local TweenService = game:GetService("TweenService")
  80. local LocalPlayer = Players.LocalPlayer
  81. local Mouse = LocalPlayer:GetMouse()
  82. local Camera = workspace.CurrentCamera
  83. local ScreenCenter = Vector2.new(Camera.ViewportSize.X / 2, Camera.ViewportSize.Y / 2)
  84. local Inset = GuiService:GetGuiInset()
  85. local Down = false
  86.  
  87. getgenv().Options = {
  88. Enabled = false,
  89. TeamCheck = true,
  90. Smoothness = 0.1,
  91. AimPart = "Head",
  92. FOV = 150
  93. }
  94.  
  95. local function GetClosestEnemy()
  96. local nearest, nearestPlayer = math.huge, nil
  97. for _, v in pairs(Players:GetPlayers()) do
  98. if v ~= LocalPlayer and v.Character and v.Character:FindFirstChild(getgenv().Options.AimPart) then
  99. if not getgenv().Options.TeamCheck or v.Team ~= LocalPlayer.Team then
  100. local pos, onScreen = Camera:WorldToScreenPoint(v.Character[getgenv().Options.AimPart].Position)
  101. local dist = (Vector2.new(pos.X, pos.Y) - ScreenCenter).Magnitude
  102. if onScreen and dist < nearest and dist < getgenv().Options.FOV then
  103. nearest, nearestPlayer = dist, v
  104. end
  105. end
  106. end
  107. end
  108. return nearestPlayer
  109. end
  110.  
  111. local FOVCircle = Drawing.new("Circle")
  112. FOVCircle.Transparency = 1
  113. FOVCircle.Thickness = 1.5
  114. FOVCircle.Visible = false
  115. FOVCircle.Color = Color3.fromRGB(255, 255, 255)
  116. FOVCircle.Filled = false
  117. FOVCircle.NumSides = 150
  118. FOVCircle.Radius = getgenv().Options.FOV
  119.  
  120. UserInputService.InputBegan:Connect(function(input)
  121. if input.UserInputType == Enum.UserInputType.MouseButton2 then
  122. Down = true
  123. end
  124. end)
  125.  
  126. UserInputService.InputEnded:Connect(function(input)
  127. if input.UserInputType == Enum.UserInputType.MouseButton2 then
  128. Down = false
  129. end
  130. end)
  131.  
  132. RunService.RenderStepped:Connect(function()
  133. FOVCircle.Position = Vector2.new(Mouse.X, Mouse.Y + Inset.Y)
  134. FOVCircle.Visible = getgenv().Options.Enabled
  135.  
  136. if getgenv().Options.Enabled and Down then
  137. local target = GetClosestEnemy()
  138. if target and target.Character:FindFirstChild(getgenv().Options.AimPart) then
  139. local aimPos = target.Character[getgenv().Options.AimPart].Position
  140. local info = TweenInfo.new(getgenv().Options.Smoothness, Enum.EasingStyle.Linear, Enum.EasingDirection.Out)
  141. TweenService:Create(Camera, info, {CFrame = CFrame.new(Camera.CFrame.p, aimPos)}):Play()
  142. end
  143. end
  144. end)
  145.  
  146.  
  147. -- Aimlock Function
  148.  
  149. local LocalPlayer = game.Players.LocalPlayer
  150. local AimlockEnabled = false
  151. local SilentAimEnabled = false
  152. local currentTarget = nil
  153. local AimOptions = {
  154. Smoothness = 0.05, -- Lower = Faster and more accurate
  155. AimPart = "Head",
  156. TeamCheck = true,
  157. WallCheck = true,
  158. PredictionFactor = 12,
  159. SpeedThreshold = 20,
  160. MaximumHackSpeed = 500,
  161. MinimumHeight = -500,
  162. Keybind = Enum.KeyCode.C,
  163. MultiTarget = true,
  164. StrafeAssist = true,
  165. TeleportAssist = true,
  166. AutoSwitchOnKill = true,
  167. PingCompensation = true,
  168. AimPredictionControl = 1.5,
  169. WallbangEnabled = false, -- Wallbang toggle
  170. }
  171.  
  172. -- ✅ Toggle Aimlock via Keybind
  173. game:GetService("UserInputService").InputBegan:Connect(function(input, processed)
  174. if not processed and input.KeyCode == AimOptions.Keybind then
  175. AimlockEnabled = not AimlockEnabled
  176. end
  177. end)
  178.  
  179. local function isEnemy(player)
  180. -- In FFA mode (no team), everyone is considered an enemy
  181. if LocalPlayer.Team == nil then
  182. return true
  183. end
  184.  
  185. -- Regular team check
  186. if AimOptions.TeamCheck and LocalPlayer.Team and player.Team then
  187. return player.Team ~= LocalPlayer.Team
  188. end
  189.  
  190. return true
  191. end
  192.  
  193. -- Wall Check Logic
  194. local function isTargetVisible(target)
  195. local cam = workspace.CurrentCamera
  196. local startPosition = cam.CFrame.Position
  197. local targetPosition = target.Character.PrimaryPart.Position
  198. local direction = (targetPosition - startPosition).unit
  199. local ray = Ray.new(startPosition, direction * 10000)
  200. local ignoreList = { LocalPlayer.Character }
  201.  
  202. -- Wallbang logic: Always return true when Wallbang is enabled
  203. if AimOptions.WallbangEnabled then
  204. return true
  205. else
  206. -- Regular visibility check with raycast (only if Wallbang is disabled)
  207. local hit, _ = workspace:FindPartOnRayWithIgnoreList(ray, ignoreList, false, true)
  208. return hit and hit.Parent == target.Character
  209. end
  210. end
  211.  
  212. local function isTargetAboveGround(target)
  213. return target and target.Character and target.Character.PrimaryPart and target.Character.PrimaryPart.Position.Y >= AimOptions.MinimumHeight
  214. end
  215.  
  216. local function getPingAdjustedPrediction(target)
  217. local ping = game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValue()
  218. local adjustment = ping / 1000
  219. return AimOptions.PingCompensation and (adjustment * AimOptions.AimPredictionControl) or 0
  220. end
  221.  
  222. local function predictTargetPosition(target)
  223. if not target or not target.Character or not target.Character.PrimaryPart then return nil end
  224.  
  225. local enemyVelocity = target.Character.PrimaryPart.Velocity
  226. local targetPos = target.Character.PrimaryPart.Position
  227.  
  228. -- ✅ Separate horizontal and vertical speed
  229. local horizontalSpeed = Vector3.new(enemyVelocity.X, 0, enemyVelocity.Z).Magnitude
  230. local verticalSpeed = math.abs(enemyVelocity.Y)
  231.  
  232. -- ✅ Ignore normal jumping/falling players (no prediction)
  233. if verticalSpeed > 20 and horizontalSpeed < 75 then
  234. return targetPos -- ✅ No prediction for jumping/falling players
  235. end
  236.  
  237. -- ✅ Only activate prediction if **enemy speed is hacker-level (extremely fast)**
  238. if horizontalSpeed > 150 then
  239. return targetPos + (enemyVelocity * AimOptions.PredictionFactor * 0.02) + Vector3.new(getPingAdjustedPrediction(target), 0, 0)
  240. else
  241. return targetPos -- ✅ No prediction for normal fast players
  242. end
  243. end
  244.  
  245. local function getBestTarget()
  246. local bestTarget = nil
  247. local bestDistance = math.huge
  248.  
  249. for _, v in pairs(game.Players:GetPlayers()) do
  250. if v ~= LocalPlayer and v.Character and v.Character.PrimaryPart and isEnemy(v) then
  251. if AimOptions.WallCheck and not isTargetVisible(v) then continue end
  252. if not isTargetAboveGround(v) then continue end
  253.  
  254. -- ✅ Correctly calculate velocity for prediction decision
  255. local velocity = v.Character.PrimaryPart.Velocity
  256. local horizontalSpeed = Vector3.new(velocity.X, 0, velocity.Z).Magnitude
  257.  
  258. -- ✅ Always use raw position; apply prediction **only if necessary**
  259. local predictedPos = predictTargetPosition(v)
  260. local rawPos = v.Character.PrimaryPart.Position
  261.  
  262. -- ✅ Ensure Aimlock doesn't miss slow-moving enemies
  263. if horizontalSpeed < AimOptions.SpeedThreshold then
  264. predictedPos = rawPos -- ✅ Use exact position for slow-moving targets
  265. end
  266.  
  267. -- ✅ Prioritize closest enemy
  268. local distanceToTarget = (predictedPos - LocalPlayer.Character.PrimaryPart.Position).Magnitude
  269. if distanceToTarget < bestDistance then
  270. bestDistance = distanceToTarget
  271. bestTarget = v
  272. end
  273. end
  274. end
  275. return bestTarget
  276. end
  277.  
  278. local function switchTargetIfNeeded()
  279. local bestTarget = getBestTarget()
  280. if bestTarget and bestTarget ~= currentTarget then
  281. currentTarget = bestTarget
  282. end
  283. end
  284.  
  285. function AimLock()
  286. if not AimlockEnabled then return end
  287.  
  288. if currentTarget and currentTarget.Character then
  289. if not isTargetVisible(currentTarget) or not isTargetAboveGround(currentTarget) then
  290. currentTarget = nil
  291. end
  292. end
  293.  
  294. switchTargetIfNeeded()
  295.  
  296. if currentTarget and currentTarget.Character and currentTarget.Character:FindFirstChild(AimOptions.AimPart) then
  297. local targetPos = predictTargetPosition(currentTarget)
  298. if not targetPos then return end
  299.  
  300. local cam = workspace.CurrentCamera
  301. local pos = cam.CFrame.Position
  302.  
  303. if not SilentAimEnabled then
  304. cam.CFrame = CFrame.new(pos, targetPos) -- Lock camera to the target
  305. end
  306. end
  307. end
  308.  
  309. game.Players.PlayerRemoving:Connect(function(player)
  310. if player == currentTarget then
  311. currentTarget = nil
  312. end
  313. end)
  314.  
  315. game:GetService("RunService").RenderStepped:Connect(function()
  316. if AimlockEnabled then
  317. AimLock()
  318. end
  319. end)
  320.  
  321. -- ✅ UI Controls
  322. Combat:NewToggle("Aimlock", "Enable or disable Aimlock (camera-based tracking).", function(state)
  323. AimlockEnabled = state
  324. end)
  325.  
  326. Combat:NewToggle("Silent Aim", "Bullets hit locked target without moving crosshair.", function(state)
  327. SilentAimEnabled = state
  328. end)
  329.  
  330. Combat:NewToggle("Wallbang", "Enable wallbang to kill players through walls.", function(state)
  331. AimOptions.WallbangEnabled = state
  332. end)
  333.  
  334. Combat:NewToggle("Wallcheck", "Enable Wallcheck!", function(state)
  335. AimOptions.WallCheck = state
  336. end)
  337.  
  338. Combat:NewToggle("Multi-Target Lock", "Locks onto multiple enemies in quick succession.", function(state)
  339. AimOptions.MultiTarget = state
  340. end)
  341.  
  342. Combat:NewToggle("Strafe Aim Assist", "Adjusts aim while moving left/right.", function(state)
  343. AimOptions.StrafeAssist = state
  344. end)
  345.  
  346. Combat:NewToggle("Teleport Aim Assist", "Instantly re-adjusts when enemies teleport.", function(state)
  347. AimOptions.TeleportAssist = state
  348. end)
  349.  
  350. Combat:NewToggle("Auto-Switch on Kill", "Automatically switches to next closest target after a kill.", function(state)
  351. AimOptions.AutoSwitchOnKill = state
  352. end)
  353.  
  354. Combat:NewToggle("Ping Compensation", "Adjusts aim for lag to improve prediction.", function(state)
  355. AimOptions.PingCompensation = state
  356. end)
  357.  
  358. Combat:NewSlider("Smoothness", "Controls how smoothly aim transitions.", 0, 1, AimOptions.Smoothness, function(value)
  359. AimOptions.Smoothness = value
  360. end)
  361.  
  362. Combat:NewSlider("Aim Prediction", "Controls how much prediction is applied.", 0, 2, AimOptions.AimPredictionControl, function(value)
  363. AimOptions.AimPredictionControl = value
  364. end)
  365.  
  366. Combat:NewDropdown("AimPart", "Choose where to aim.", {"Head", "HumanoidRootPart", "Torso"}, function(selected)
  367. AimOptions.AimPart = selected
  368. end)
  369.  
  370. Combat:NewKeybind("Aim Keybind", "Press to toggle Aimlock.", AimOptions.Keybind, function()
  371. AimlockEnabled = not AimlockEnabled
  372. end)
  373.  
  374.  
  375. -- Hitbox Expander
  376. Combat:NewButton("Hitbox Expander", "Increases enemy hitbox size for easier targeting.", function()
  377. local Players = game:GetService("Players")
  378. local LocalPlayer = Players.LocalPlayer
  379. local Team = LocalPlayer.Team
  380.  
  381. for _, player in pairs(Players:GetPlayers()) do
  382. if player ~= LocalPlayer and player.Team ~= Team and player.Character then
  383. local torso = player.Character:FindFirstChild("UpperTorso")
  384. if torso then
  385. torso.Size = Vector3.new(20, 20, 20)
  386. torso.Transparency = 0.7
  387. torso.CanCollide = false
  388. end
  389. end
  390. end
  391. end)
  392.  
  393. Combat:NewToggle("AutoFarm", "?", function(bool)
  394. getgenv().AutoFarm = bool
  395.  
  396. local runServiceConnection
  397. local mouseDown = false
  398. local player = game.Players.LocalPlayer
  399. local camera = game.Workspace.CurrentCamera
  400.  
  401. -- Set initial curse
  402. game:GetService("ReplicatedStorage").wkspc.CurrentCurse.Value = bool and "Infinite Ammo" or ""
  403.  
  404. -- Function to get the closest player
  405. local function closestPlayer()
  406. local closestDistance = math.huge
  407. local closestPlayer = nil
  408.  
  409. for _, enemyPlayer in pairs(game.Players:GetPlayers()) do
  410. if enemyPlayer ~= player and enemyPlayer.TeamColor ~= player.TeamColor and enemyPlayer.Character then
  411. local character = enemyPlayer.Character
  412. local humanoidRootPart = character:FindFirstChild("HumanoidRootPart")
  413. local humanoid = character:FindFirstChild("Humanoid")
  414. if humanoidRootPart and humanoid and humanoid.Health > 0 then
  415. local distance = (player.Character.HumanoidRootPart.Position - humanoidRootPart.Position).Magnitude
  416. if distance < closestDistance then
  417. closestDistance = distance
  418. closestPlayer = enemyPlayer
  419. end
  420. end
  421. end
  422. end
  423.  
  424. return closestPlayer
  425. end
  426.  
  427. -- Function to perform autofarming actions
  428. local function AutoFarm()
  429. game:GetService("ReplicatedStorage").wkspc.TimeScale.Value = 12
  430.  
  431. runServiceConnection = game:GetService("RunService").Stepped:Connect(function()
  432. if getgenv().AutoFarm then
  433. local closestPlayer = closestPlayer()
  434. if closestPlayer and player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  435. local enemyRootPart = closestPlayer.Character.HumanoidRootPart
  436.  
  437. local targetPosition = enemyRootPart.Position - enemyRootPart.CFrame.LookVector * 2 + Vector3.new(0, 2, 0)
  438. player.Character.HumanoidRootPart.CFrame = CFrame.new(targetPosition)
  439.  
  440. -- Face camera towards enemy's head
  441. if closestPlayer.Character:FindFirstChild("Head") then
  442. local enemyHead = closestPlayer.Character.Head.Position
  443. camera.CFrame = CFrame.new(camera.CFrame.Position, enemyHead)
  444. end
  445.  
  446. -- Trigger mouse click only if not already pressed
  447. if not mouseDown then
  448. mouse1press()
  449. mouseDown = true
  450. end
  451. else
  452. -- Release mouse if no player is found
  453. if mouseDown then
  454. mouse1release()
  455. mouseDown = false
  456. end
  457. end
  458. else
  459. -- Stop autofarm and release mouse
  460. if runServiceConnection then
  461. runServiceConnection:Disconnect()
  462. runServiceConnection = nil
  463. end
  464. if mouseDown then
  465. mouse1release()
  466. mouseDown = false
  467. end
  468. end
  469. end)
  470. end
  471.  
  472. -- Start autofarming when character is added
  473. local function onCharacterAdded(character)
  474. wait(0.5)
  475. AutoFarm()
  476. end
  477.  
  478. -- Listen for character addition and start autofarm
  479. player.CharacterAdded:Connect(onCharacterAdded)
  480.  
  481. -- Toggle the AutoFarm
  482. if bool then
  483. wait(0.5)
  484. AutoFarm()
  485. else
  486. -- Reset values when toggled off
  487. game:GetService("ReplicatedStorage").wkspc.CurrentCurse.Value = ""
  488. getgenv().AutoFarm = false
  489. game:GetService("ReplicatedStorage").wkspc.TimeScale.Value = 1
  490. if runServiceConnection then
  491. runServiceConnection:Disconnect()
  492. runServiceConnection = nil
  493. end
  494. if mouseDown then
  495. mouse1release()
  496. mouseDown = false
  497. end
  498. end
  499. end)
  500.  
  501.  
  502.  
  503. -- RapidFire
  504. GunMods:NewButton("RapidFire", "Decreases gun delay for rapid shooting.", function()
  505. local Weapons = game:GetService("ReplicatedStorage"):FindFirstChild("Weapons")
  506. if Weapons then
  507. for _, weapon in pairs(Weapons:GetDescendants()) do
  508. if weapon:IsA("NumberValue") then
  509. if weapon.Name == "FireRate" then
  510. weapon.Value = 0.05
  511. end
  512. if weapon.Name == "ReloadTime" then
  513. weapon.Value = 0
  514. end
  515. end
  516. end
  517. end
  518. game:GetService("StarterGui"):SetCore("SendNotification", {
  519. Title = "Rapid Fire",
  520. Text = "Rapid Fire Activated",
  521. Duration = 5
  522. })
  523. end)
  524.  
  525. GunMods:NewToggle("Always Auto", "?", function(state)
  526. for _, v in pairs(game.ReplicatedStorage.Weapons:GetDescendants()) do
  527. if v.Name == "Auto" or v.Name == "AutoFire" or v.Name == "Automatic" or v.Name == "AutoShoot" or v.Name == "AutoGun" then
  528. if state then
  529. if not originalValues.Auto[v] then
  530. originalValues.Auto[v] = v.Value
  531. end
  532. v.Value = true
  533. else
  534. if originalValues.Auto[v] then
  535. v.Value = originalValues.Auto[v]
  536. else
  537. v.Value = false
  538. end
  539. end
  540. end
  541. end
  542. end)
  543.  
  544. GunMods:NewToggle("No Spread", "?", function(state)
  545. for _, v in pairs(game:GetService("ReplicatedStorage").Weapons:GetDescendants()) do
  546. if v.Name == "MaxSpread" or v.Name == "Spread" or v.Name == "SpreadControl" then
  547. if state then
  548. if not originalValues.Spread[v] then
  549. originalValues.Spread[v] = v.Value
  550. end
  551. v.Value = 0
  552. else
  553. if originalValues.Spread[v] then
  554. v.Value = originalValues.Spread[v]
  555. else
  556. v.Value = 1
  557. end
  558. end
  559. end
  560. end
  561. end)
  562.  
  563. GunMods:NewToggle("No Recoil", "?", function(state)
  564. for _, v in pairs(game:GetService("ReplicatedStorage").Weapons:GetDescendants()) do
  565. if v.Name == "RecoilControl" or v.Name == "Recoil" then
  566. if state then
  567. if not originalValues.Recoil[v] then
  568. originalValues.Recoil[v] = v.Value
  569. end
  570. v.Value = 0
  571. else
  572. if originalValues.Recoil[v] then
  573. v.Value = originalValues.Recoil[v]
  574. else
  575. v.Value = 1
  576. end
  577. end
  578. end
  579. end
  580. end)
  581.  
  582.  
  583.  
  584. GunMods:NewButton("RGB GUN", "RAINBOW GAY", function()
  585.  
  586. game:GetService("StarterGui"):SetCore("SendNotification",{
  587.  
  588. Title = "RGB gun has been executed lol",
  589.  
  590. Text = "RBG = More fps (Joke)",
  591.  
  592. Duration = 5
  593.  
  594. })
  595.  
  596. local c = 1 function zigzag(X) return math.acos(math.cos(X * math.pi)) / math.pi end game:GetService("RunService").RenderStepped:Connect(function() if game.Workspace.Camera:FindFirstChild('Arms') then for i,v in pairs(game.Workspace.Camera.Arms:GetDescendants()) do if v.ClassName == 'MeshPart' then v.Color = Color3.fromHSV(zigzag(c),1,1) c = c + .0001 end end end end)
  597.  
  598. end)
  599.  
  600. GunMods:NewButton("Inf Ammo", "inf ammo", function()
  601.  
  602. while wait() do
  603.  
  604. game:GetService("Players").LocalPlayer.PlayerGui.GUI.Client.Variables.ammocount.Value = 999
  605.  
  606. game:GetService("Players").LocalPlayer.PlayerGui.GUI.Client.Variables.ammocount2.Value = 999
  607.  
  608. end
  609.  
  610. end)
  611.  
  612. GunMods:NewKeybind("KeybindText", "KeybindInfo", Enum.KeyCode.F, function()
  613. Library:ToggleUI()
  614. end)
  615.  
  616. Player:NewButton("Inf Jump", "jump infinitely", function()
  617.  
  618.  
  619. -- Instances:
  620.  
  621. local DropGUI = Instance.new("ScreenGui")
  622.  
  623. local main = Instance.new("Frame")
  624.  
  625. local DropTool = Instance.new("TextButton")
  626.  
  627. --Properties:
  628.  
  629. DropGUI.Name = "Drop GUI"
  630.  
  631. DropGUI.Parent = game.CoreGui
  632.  
  633. DropGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  634.  
  635. main.Name = "main"
  636.  
  637. main.Parent = DropGUI
  638.  
  639. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  640.  
  641. main.Position = UDim2.new(0.0809101239, 0, 0.203790441, 0)
  642.  
  643. main.Size = UDim2.new(0, 100, 0, 100)
  644.  
  645. main.Active = true
  646.  
  647. main.Draggable = true
  648.  
  649. DropTool.Name = "Drop Tool"
  650.  
  651. DropTool.Parent = main
  652.  
  653. DropTool.BackgroundColor3 = Color3.fromRGB(350, 0, 0)
  654.  
  655. DropTool.Position = UDim2.new(0.0597826242, 0, 0.119906127, 0)
  656.  
  657. DropTool.Size = UDim2.new(0, 80, 0, 80)
  658.  
  659. DropTool.Font = Enum.Font.SourceSans
  660.  
  661. DropTool.Text = "^"
  662.  
  663. DropTool.TextColor3 = Color3.fromRGB(0, 0, 0)
  664.  
  665. DropTool.TextScaled = true
  666.  
  667. DropTool.TextSize = 14.000
  668.  
  669. DropTool.TextWrapped = true
  670.  
  671. DropTool.MouseButton1Down:Connect(function()
  672.  
  673. local InfiniteJumpEnabled = true
  674.  
  675. game:GetService("UserInputService").JumpRequest:connect(function()
  676.  
  677. if InfiniteJumpEnabled then
  678.  
  679. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  680.  
  681. end
  682.  
  683. end)
  684.  
  685. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  686.  
  687. end)
  688.  
  689. end)
  690.  
  691. Player:NewButton("Invisible", "lol milk", function()
  692.  
  693. loadstring(game:HttpGet(('https://raw.githubusercontent.com/Cesare0328/my-scripts/main/arsenal%20updated%20invis.lua'),true))()
  694.  
  695. end)
  696.  
  697. Player:NewToggle("Toggle Xray", "WallXray lol", function(enabled) -- xray go brrrrrrrr
  698. xrayOn = enabled
  699.  
  700. if xrayOn then
  701. for _, descendant in pairs(workspace:GetDescendants()) do
  702. if descendant:IsA("BasePart") then
  703. if not descendant:FindFirstChild("OriginalTransparency") then
  704. local originalTransparency = Instance.new("NumberValue")
  705. originalTransparency.Name = "OriginalTransparency"
  706. originalTransparency.Value = descendant.Transparency
  707. originalTransparency.Parent = descendant
  708. end
  709. descendant.Transparency = 0.5
  710. end
  711. end
  712. else
  713. for _, descendant in pairs(workspace:GetDescendants()) do
  714. if descendant:IsA("BasePart") then
  715. if descendant:FindFirstChild("OriginalTransparency") then
  716. descendant.Transparency = descendant.OriginalTransparency.Value
  717. descendant.OriginalTransparency:Destroy()
  718. end
  719. end
  720. end
  721. end
  722. end)
  723.  
  724. -- Flying Script
  725. local flySettings = {fly = false, flyspeed = 50}
  726. local c, h, bv, bav, cam, flying
  727. local p = game.Players.LocalPlayer
  728. local buttons = {W = false, S = false, A = false, D = false, Moving = false}
  729.  
  730. local function startFly()
  731. if not p.Character or not p.Character.Head or flying then return end
  732. c = p.Character
  733. h = c.Humanoid
  734. h.PlatformStand = true
  735. cam = workspace:WaitForChild('Camera')
  736. bv = Instance.new("BodyVelocity")
  737. bav = Instance.new("BodyAngularVelocity")
  738. bv.Velocity, bv.MaxForce, bv.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  739. bav.AngularVelocity, bav.MaxTorque, bav.P = Vector3.new(0, 0, 0), Vector3.new(10000, 10000, 10000), 1000
  740. bv.Parent = c.Head
  741. bav.Parent = c.Head
  742. flying = true
  743. h.Died:Connect(function()
  744. flying = false
  745. end)
  746. end
  747.  
  748. local function endFly()
  749. if not p.Character or not flying then return end
  750. h.PlatformStand = false
  751. bv:Destroy()
  752. bav:Destroy()
  753. flying = false
  754. end
  755.  
  756. game:GetService("UserInputService").InputBegan:Connect(function(input, GPE)
  757. if GPE then return end
  758. for i, e in pairs(buttons) do
  759. if i ~= "Moving" and input.KeyCode == Enum.KeyCode[i] then
  760. buttons[i] = true
  761. buttons.Moving = true
  762. end
  763. end
  764. end)
  765.  
  766. game:GetService("UserInputService").InputEnded:Connect(function(input, GPE)
  767. if GPE then return end
  768. local a = false
  769. for i, e in pairs(buttons) do
  770. if i ~= "Moving" then
  771. if input.KeyCode == Enum.KeyCode[i] then
  772. buttons[i] = false
  773. end
  774. if buttons[i] then
  775. a = true
  776. end
  777. end
  778. end
  779. buttons.Moving = a
  780. end)
  781.  
  782. local function setVec(vec)
  783. return vec * (flySettings.flyspeed / vec.Magnitude)
  784. end
  785.  
  786. game:GetService("RunService").Heartbeat:Connect(function(step)
  787. if flying and c and c.PrimaryPart then
  788. local p = c.PrimaryPart.Position
  789. local cf = cam.CFrame
  790. local ax, ay, az = cf:toEulerAnglesXYZ()
  791. c:SetPrimaryPartCFrame(CFrame.new(p.x, p.y, p.z) * CFrame.Angles(ax, ay, az))
  792. if buttons.Moving then
  793. local t = Vector3.new()
  794. if buttons.W then t = t + (setVec(cf.lookVector)) end
  795. if buttons.S then t = t - (setVec(cf.lookVector)) end
  796. if buttons.A then t = t - (setVec(cf.rightVector)) end
  797. if buttons.D then t = t + (setVec(cf.rightVector)) end
  798. c:TranslateBy(t * step)
  799. end
  800. end
  801. end)
  802.  
  803. Player:NewToggle("Fly", "Allows the player to fly", function(state)
  804. if state then
  805. startFly()
  806. else
  807. endFly()
  808. end
  809. end)
  810.  
  811. Player:NewSlider("Fly Speed", "Allows for faster/slower flight", 500, 1, function(s)
  812. flySettings.flyspeed = s
  813. end)
  814.  
  815.  
  816. Misc:NewButton("Fps Booster", "lol", function()
  817.  
  818. local decalsyeeted = true -- Leaving this on makes games look shitty but the fps goes up by at least 20.
  819.  
  820. local g = game
  821.  
  822. local w = g.Workspace
  823.  
  824. local l = g.Lighting
  825.  
  826. local t = w.Terrain
  827.  
  828. t.WaterWaveSize = 0
  829.  
  830. t.WaterWaveSpeed = 0
  831.  
  832. t.WaterReflectance = 0
  833.  
  834. t.WaterTransparency = 0
  835.  
  836. l.GlobalShadows = false
  837.  
  838. l.FogEnd = 9e9
  839.  
  840. l.Brightness = 0
  841.  
  842. settings().Rendering.QualityLevel = "Level01"
  843.  
  844. for i, v in pairs(g:GetDescendants()) do
  845.  
  846. if v:IsA("Part") or v:IsA("Union") or v:IsA("CornerWedgePart") or v:IsA("TrussPart") then
  847.  
  848. v.Material = "Plastic"
  849.  
  850. v.Reflectance = 0
  851.  
  852. elseif v:IsA("Decal") or v:IsA("Texture") and decalsyeeted then
  853.  
  854. v.Transparency = 1
  855.  
  856. elseif v:IsA("ParticleEmitter") or v:IsA("Trail") then
  857.  
  858. v.Lifetime = NumberRange.new(0)
  859.  
  860. elseif v:IsA("Explosion") then
  861.  
  862. v.BlastPressure = 1
  863.  
  864. v.BlastRadius = 1
  865.  
  866. elseif v:IsA("Fire") or v:IsA("SpotLight") or v:IsA("Smoke") then
  867.  
  868. v.Enabled = false
  869.  
  870. elseif v:IsA("MeshPart") then
  871.  
  872. v.Material = "Plastic"
  873.  
  874. v.Reflectance = 0
  875.  
  876. v.TextureID = 10385902758728957
  877.  
  878. end
  879.  
  880. end
  881.  
  882. for i, e in pairs(l:GetChildren()) do
  883.  
  884. if e:IsA("BlurEffect") or e:IsA("SunRaysEffect") or e:IsA("ColorCorrectionEffect") or e:IsA("BloomEffect") or e:IsA("DepthOfFieldEffect") then
  885.  
  886. e.Enabled = false
  887.  
  888. end
  889.  
  890. end
  891.  
  892. end)
  893.  
  894. -- Add this to your Misc section
  895. Misc:NewLabel("Chat") -- fun i guess
  896.  
  897. Misc:NewToggle("IsChad", "?", function(x)
  898. if game.Players.LocalPlayer:FindFirstChild('IsChad') then
  899. game.Players.LocalPlayer.IsChad:Destroy()
  900. return
  901. end
  902. if x then
  903. local IsMod = Instance.new('IntValue', game.Players.LocalPlayer)
  904. IsMod.Name = "IsChad"
  905. end
  906. end)
  907.  
  908. Misc:NewToggle("VIP", "?", function(x)
  909. if game.Players.LocalPlayer:FindFirstChild('VIP') then
  910. game.Players.LocalPlayer.VIP:Destroy()
  911. return
  912. end
  913. if x then
  914. local IsMod = Instance.new('IntValue', game.Players.LocalPlayer)
  915. IsMod.Name = "VIP"
  916. end
  917. end)
  918.  
  919. Misc:NewToggle("OldVIP", "?", function(x)
  920. if game.Players.LocalPlayer:FindFirstChild('OldVIP') then
  921. game.Players.LocalPlayer.OldVIP:Destroy()
  922. return
  923. end
  924. if x then
  925. local IsMod = Instance.new('IntValue', game.Players.LocalPlayer)
  926. IsMod.Name = "OldVIP"
  927. end
  928. end)
  929.  
  930. Misc:NewToggle("Romin", "?", function(x)
  931. if game.Players.LocalPlayer:FindFirstChild('Romin') then
  932. game.Players.LocalPlayer.Romin:Destroy()
  933. return
  934. end
  935. if x then
  936. local IsAdmin = Instance.new('IntValue', game.Players.LocalPlayer)
  937. IsAdmin.Name = "Romin"
  938. end
  939. end)
  940.  
  941. Misc:NewToggle("IsAdmin", "?", function(x)
  942. if game.Players.LocalPlayer:FindFirstChild('IsAdmin') then
  943. game.Players.LocalPlayer.IsAdmin:Destroy()
  944. return
  945. end
  946. if x then
  947. local IsAdmin = Instance.new('IntValue', game.Players.LocalPlayer)
  948. IsAdmin.Name = "IsAdmin"
  949. end
  950. end)
  951.  
  952. Misc:NewButton("FullBright", "no shadows", function()
  953.  
  954. local Light = game:GetService("Lighting")
  955.  
  956. function dofullbright()
  957.  
  958. Light.Ambient = Color3.new(1, 1, 1)
  959.  
  960. Light.ColorShift_Bottom = Color3.new(1, 1, 1)
  961.  
  962. Light.ColorShift_Top = Color3.new(1, 1, 1)
  963.  
  964. end
  965.  
  966. dofullbright()
  967.  
  968. Light.LightingChanged:Connect(dofullbright)
  969.  
  970. end)
  971.  
  972. Misc:NewButton("Esp", "LOL", function()
  973. _G.FriendColor = Color3.fromRGB(0, 0, 255)
  974. _G.EnemyColor = Color3.fromRGB(255, 0, 0)
  975. _G.UseTeamColor = true
  976.  
  977. --------------------------------------------------------------------
  978. local Holder = Instance.new("Folder", game.CoreGui)
  979. Holder.Name = "ESP"
  980.  
  981. local Box = Instance.new("BoxHandleAdornment")
  982. Box.Name = "nilBox"
  983. Box.Size = Vector3.new(1, 2, 1)
  984. Box.Color3 = Color3.new(100 / 255, 100 / 255, 100 / 255)
  985. Box.Transparency = 0.7
  986. Box.ZIndex = 0
  987. Box.AlwaysOnTop = false
  988. Box.Visible = false
  989.  
  990. local NameTag = Instance.new("BillboardGui")
  991. NameTag.Name = "nilNameTag"
  992. NameTag.Enabled = false
  993. NameTag.Size = UDim2.new(0, 200, 0, 50)
  994. NameTag.AlwaysOnTop = true
  995. NameTag.StudsOffset = Vector3.new(0, 1.8, 0)
  996. local Tag = Instance.new("TextLabel", NameTag)
  997. Tag.Name = "Tag"
  998. Tag.BackgroundTransparency = 1
  999. Tag.Position = UDim2.new(0, -50, 0, 0)
  1000. Tag.Size = UDim2.new(0, 300, 0, 20)
  1001. Tag.TextSize = 15
  1002. Tag.TextColor3 = Color3.new(100 / 255, 100 / 255, 100 / 255)
  1003. Tag.TextStrokeColor3 = Color3.new(0 / 255, 0 / 255, 0 / 255)
  1004. Tag.TextStrokeTransparency = 0.4
  1005. Tag.Text = "nil"
  1006. Tag.Font = Enum.Font.SourceSansBold
  1007. Tag.TextScaled = false
  1008.  
  1009. local LoadCharacter = function(v)
  1010. repeat wait() until v.Character ~= nil
  1011. v.Character:WaitForChild("Humanoid")
  1012. local vHolder = Holder:FindFirstChild(v.Name)
  1013. vHolder:ClearAllChildren()
  1014. local b = Box:Clone()
  1015. b.Name = v.Name .. "Box"
  1016. b.Adornee = v.Character
  1017. b.Parent = vHolder
  1018. local t = NameTag:Clone()
  1019. t.Name = v.Name .. "NameTag"
  1020. t.Enabled = true
  1021. t.Parent = vHolder
  1022. t.Adornee = v.Character:WaitForChild("Head", 5)
  1023. if not t.Adornee then
  1024. return UnloadCharacter(v)
  1025. end
  1026. t.Tag.Text = v.Name
  1027. b.Color3 = Color3.new(v.TeamColor.r, v.TeamColor.g, v.TeamColor.b)
  1028. t.Tag.TextColor3 = Color3.new(v.TeamColor.r, v.TeamColor.g, v.TeamColor.b)
  1029. local Update
  1030. local UpdateNameTag = function()
  1031. if not pcall(function()
  1032. v.Character.Humanoid.DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None
  1033. local maxh = math.floor(v.Character.Humanoid.MaxHealth)
  1034. local h = math.floor(v.Character.Humanoid.Health)
  1035. end) then
  1036. Update:Disconnect()
  1037. end
  1038. end
  1039. UpdateNameTag()
  1040. Update = v.Character.Humanoid.Changed:Connect(UpdateNameTag)
  1041. end
  1042.  
  1043. local UnloadCharacter = function(v)
  1044. local vHolder = Holder:FindFirstChild(v.Name)
  1045. if vHolder and (vHolder:FindFirstChild(v.Name .. "Box") ~= nil or vHolder:FindFirstChild(v.Name .. "NameTag") ~= nil) then
  1046. vHolder:ClearAllChildren()
  1047. end
  1048. end
  1049.  
  1050. local LoadPlayer = function(v)
  1051. local vHolder = Instance.new("Folder", Holder)
  1052. vHolder.Name = v.Name
  1053. v.CharacterAdded:Connect(function()
  1054. pcall(LoadCharacter, v)
  1055. end)
  1056. v.CharacterRemoving:Connect(function()
  1057. pcall(UnloadCharacter, v)
  1058. end)
  1059. v.Changed:Connect(function(prop)
  1060. if prop == "TeamColor" then
  1061. UnloadCharacter(v)
  1062. wait()
  1063. LoadCharacter(v)
  1064. end
  1065. end)
  1066. LoadCharacter(v)
  1067. end
  1068.  
  1069. local UnloadPlayer = function(v)
  1070. UnloadCharacter(v)
  1071. local vHolder = Holder:FindFirstChild(v.Name)
  1072. if vHolder then
  1073. vHolder:Destroy()
  1074. end
  1075. end
  1076.  
  1077. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1078. spawn(function() pcall(LoadPlayer, v) end)
  1079. end
  1080.  
  1081. game:GetService("Players").PlayerAdded:Connect(function(v)
  1082. pcall(LoadPlayer, v)
  1083. end)
  1084.  
  1085. game:GetService("Players").PlayerRemoving:Connect(function(v)
  1086. pcall(UnloadPlayer, v)
  1087. end)
  1088.  
  1089. game:GetService("Players").LocalPlayer.NameDisplayDistance = 0
  1090.  
  1091. if _G.Reantheajfdfjdgs then
  1092. return
  1093. end
  1094.  
  1095. _G.Reantheajfdfjdgs = ":suifayhgvsdghfsfkajewfrhk321rk213kjrgkhj432rj34f67df"
  1096.  
  1097. local players = game:GetService("Players")
  1098. local plr = players.LocalPlayer
  1099.  
  1100. function esp(target, color)
  1101. if target.Character then
  1102. if not target.Character:FindFirstChild("GetReal") then
  1103. local highlight = Instance.new("Highlight")
  1104. highlight.RobloxLocked = true
  1105. highlight.Name = "GetReal"
  1106. highlight.Adornee = target.Character
  1107. highlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop
  1108. highlight.FillColor = color
  1109. highlight.Parent = target.Character
  1110. else
  1111. target.Character.GetReal.FillColor = color
  1112. end
  1113. end
  1114. end
  1115.  
  1116. while task.wait() do
  1117. for i, v in pairs(players:GetPlayers()) do
  1118. if v ~= plr then
  1119. esp(v, _G.UseTeamColor and v.TeamColor.Color or ((plr.TeamColor == v.TeamColor) and _G.FriendColor or _G.EnemyColor))
  1120. end
  1121. end
  1122. end
  1123. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement