Advertisement
kipr987

Jailbreak New

May 6th, 2025 (edited)
376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 24.98 KB | None | 0 0
  1. for i, v in pairs(game:GetService("CoreGui"):GetChildren()) do
  2.     if v.Name == "ui" then
  3.         v:Destroy()
  4.     end
  5. end
  6. local UI = loadstring(game:HttpGetAsync("https://pastebin.com/raw/0589YkmB"))()
  7.  
  8. local window = UI:Window("Premium")
  9. local nif = UI:Notification("Welcome to", game:GetService("Players").LocalPlayer.Name, "Okay!")
  10. local aim = window:Tab("Aimbot")
  11. local esp = window:Tab("Esp")
  12. local teleportm = window:Tab("Teleport")
  13. local robbers = window:Tab("Robbers")
  14. local player = window:Tab("LocalPlayer")
  15. local misc = window:Tab("Misc")
  16.  
  17. _G.aim = true
  18. aim:Toggle("Aimbot",true,function(value)
  19.     _G.aim = value
  20. end)
  21.  
  22. _G.Dis = 300
  23. aim:Slider("Distance",0,600,300,function(value)
  24.     _G.Dis = value
  25. end)
  26.  
  27. _G.Esp = true
  28. esp:Toggle("Esp",true,function(value)
  29.     _G.Esp = value
  30. end)
  31.  
  32. _G.dropesp = false
  33. esp:Toggle("Drop Esp",false,function(value)
  34.     _G.dropesp = value
  35. end)
  36.  
  37. robbers:Button("Drop",function()
  38.     if workspace:FindFirstChild("Drop") then
  39.         teleport(game:GetService("Workspace").Drop.Root.Position)
  40.     end
  41. end)
  42.  
  43.  
  44. _G.speed = 24
  45. player:Slider("Speed",0,100,24,function(value)
  46.     _G.speed = value
  47. end)
  48.  
  49. _G.inf = false
  50. player:Toggle("Inf Jump",false,function(value)
  51.     _G.inf = value
  52. end)
  53.  
  54.  _G.Nerf = false
  55. player:Toggle("Nerf Equip",false,function(value)
  56.     _G.Nerf = value
  57. end)
  58.  
  59. player:Toggle("Anti Ragdoll", false, function(value)
  60. local tagUtils = require(game:GetService("ReplicatedStorage").Tag.TagUtils)
  61.  
  62. local oldIsPointInTag
  63. tagUtils.isPointInTag = function(point, tag)
  64.     if tag == "NoRagdoll" or tag == "NoFallDamage" then
  65.         return value
  66.     end
  67.    
  68.     return oldIsPointInTag(point, tag)
  69. end
  70. end)
  71.  
  72. misc:Toggle("Unlock Doors", false, function(value)
  73.     local plrUtils = game:GetService("ReplicatedStorage").Game.PlayerUtils
  74. local oldHasKey = require(plrUtils).hasKey
  75. require(plrUtils).hasKey = function()
  76. return value
  77. end
  78. end)
  79.  
  80. local u13 = require(game:GetService("ReplicatedStorage").Game.GunShop.GunShopUI)
  81. misc:Button("Shop Open", function(value)
  82.     u13.open()
  83. end)
  84.  
  85. misc:Button("No wait E", function()
  86. local UI = require(game:GetService("ReplicatedStorage").Module:WaitForChild("UI"));
  87. while wait() do
  88. for i,v in pairs (UI.CircleAction.Specs) do
  89. v.Duration = 0;
  90. v.Timed = true;
  91. end
  92. end
  93. end)
  94.  
  95. misc:Button("Delete Doors & Lasers",function(value)
  96.             for i, v in workspace:GetDescendants() do
  97. if v.Name == "BarbedWire" or v.Name == "Door" and v:IsA("Part") or v:IsA("Part") and v:FindFirstChild("TouchInterest") and v.BrickColor == BrickColor.new("Dusty Rose") or v.Name == "Part" and v:FindFirstChild("TouchInterest") then
  98. v.CanTouch = false
  99. v.CanCollide = false
  100. v.Transparency = 1
  101. end
  102. if v.Name == "SlideDoor" or v.Name == "SwingDoor" or v.Name == "Doors" or v.Name == "BankDoor" then
  103. for i, f in v:GetDescendants() do
  104. if f:IsA("Part") or f:IsA("MeshPart") then
  105. f.CanCollide = false
  106. f.Transparency = 1
  107. end
  108. end
  109. end
  110. end
  111. end)
  112.  
  113. getgenv().toggled = false
  114.  
  115. misc:Toggle("Killaura", false, function(value)
  116.     getgenv().toggled = value
  117. end)
  118.  
  119. spawn(function()
  120.  
  121. if getgenv().killauraloaded then return end
  122. local old = require(game:GetService("ReplicatedStorage").Module.RayCast).RayIgnoreNonCollideWithIgnoreList
  123. local function getNearestEnemy()
  124. local nearestDistance, nearestEnemy = 1000, nil
  125. local myTeam = tostring(game:GetService("Players").LocalPlayer.Team)
  126. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  127. local theirTeam = tostring(v.Team)
  128. if ((myTeam == "Police" and theirTeam == "Criminal") or theirTeam == "Police") and theirTeam ~= myTeam and v.Character and v.Character:FindFirstChild("HumanoidRootPart") then
  129. if (v.Character.HumanoidRootPart.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude < nearestDistance then
  130. nearestDistance, nearestEnemy = (v.Character.HumanoidRootPart.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude, v
  131. end
  132. end
  133. end
  134. return nearestEnemy
  135. end
  136. local function shoot()
  137. local currentGun = require(game:GetService("ReplicatedStorage").Game:WaitForChild("ItemSystem"):WaitForChild("ItemSystem")).GetLocalEquipped()
  138. if not currentGun then return end
  139. require(game:GetService("ReplicatedStorage").Game:WaitForChild("Item"):WaitForChild("Gun"))._attemptShoot(currentGun)
  140. end
  141. getgenv().killauraloaded = true
  142. while wait(0.5) do
  143. if getgenv().toggled == false then continue end
  144. if not game:GetService("Players").LocalPlayer.Character then continue end
  145. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then continue end
  146. local nearestEnemy = getNearestEnemy()
  147. if nearestEnemy then
  148. require(game:GetService("ReplicatedStorage").Module.RayCast).RayIgnoreNonCollideWithIgnoreList = function(...)
  149. local arg = {old(...)}
  150. if (tostring(getfenv(2).script) == "BulletEmitter" or tostring(getfenv(2).script) == "Taser") and nearestEnemy and nearestEnemy.Character and nearestEnemy.Character:FindFirstChild("HumanoidRootPart") and nearestEnemy.Character:FindFirstChild("Humanoid") and (nearestEnemy.Character.HumanoidRootPart.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude < 600 and nearestEnemy.Character.Humanoid.Health > 0 then
  151. arg[1] = nearestEnemy.Character.HumanoidRootPart
  152. arg[2] = nearestEnemy.Character.HumanoidRootPart.Position
  153. end
  154. return unpack(arg)
  155. end
  156. if not game:GetService("Players").LocalPlayer.Folder:FindFirstChild("Pistol") then
  157. fireclickdetector(workspace.Givers:GetChildren()[17].ClickDetector)
  158. end
  159. if game:GetService("Players").LocalPlayer.Folder:FindFirstChild("Pistol") then
  160. while game:GetService("Players").LocalPlayer.Folder:FindFirstChild("Pistol") and nearestEnemy and nearestEnemy.Character and nearestEnemy.Character:FindFirstChild("HumanoidRootPart") and nearestEnemy.Character:FindFirstChild("Humanoid") and (nearestEnemy.Character.HumanoidRootPart.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).Magnitude < 600 and nearestEnemy.Character.Humanoid.Health > 0 do
  161. game:GetService("Players").LocalPlayer.Folder.Pistol.InventoryEquipRemote:FireServer(true)
  162. wait()
  163. shoot()
  164. end
  165. end
  166. if game:GetService("Players").LocalPlayer.Folder:FindFirstChild("Pistol") then
  167. game:GetService("Players").LocalPlayer.Folder.Pistol.InventoryEquipRemote:FireServer(false)
  168. end
  169. else
  170. require(game:GetService("ReplicatedStorage").Module.RayCast).RayIgnoreNonCollideWithIgnoreList = old
  171. end
  172. end
  173. end)
  174. _G.Killed = true
  175. misc:Toggle("Killed NPC",true,function(value)
  176.     _G.Killed = value
  177. end)
  178.  
  179. _G.Hitbox = true
  180. misc:Toggle("Hitbox",true,function(value)
  181.     _G.Hitbox = value
  182. end)
  183.  
  184. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  185.  
  186. local players = game:GetService("Players")
  187. function teleport(pos)
  188.     local is = false
  189.     if game:GetService("Players").LocalPlayer.Character.HumanoidRootPart:FindFirstChild("Vel") then
  190.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Vel:Destroy()
  191.     end
  192.     local params = RaycastParams.new()
  193.     params.FilterType = Enum.RaycastFilterType.Include
  194.     params.FilterDescendantsInstances = {players.LocalPlayer.Character,game:GetService("Workspace").OilRig.ActiveRobberyRegion,game:GetService("Workspace").OilRig.GunRegions.Region}
  195.     local raycast = workspace:Raycast(players.LocalPlayer.Character.HumanoidRootPart.Position+Vector3.new(0,5,0),Vector3.new(0,1000,0),params)
  196.     if not raycast or raycast.Instance == "Region" then
  197.         if players.LocalPlayer.Character.Humanoid.Sit == false and (pos - players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 500 then
  198.             is = true
  199.             for i, v in game:GetService("Workspace").Vehicles:GetChildren() do
  200.                 if v.Name == "Camaro" and (v:FindFirstChild("Engine").Position - players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude < 500 then
  201.                     players.LocalPlayer.Character.HumanoidRootPart.CFrame += Vector3.new(0,3000,0)
  202.                     vel = Instance.new("BodyVelocity",game:GetService("Players").LocalPlayer.Character.HumanoidRootPart)
  203.                     vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  204.                     vel.Name = "Vel"
  205.                     vel.P = 0
  206.                     local d = (players.LocalPlayer.Character.HumanoidRootPart.Position - v:FindFirstChild("Engine").Position+Vector3.new(0,3000,0)).magnitude
  207.                     cood = v:FindFirstChild("Engine").Position+Vector3.new(0,3000,0)
  208.                     repeat
  209.                         wait()
  210.                         vel.Velocity = CFrame.lookAt(players.LocalPlayer.Character.HumanoidRootPart.Position,cood).LookVector * d / d * 50
  211.                     until (players.LocalPlayer.Character.HumanoidRootPart.Position - cood).magnitude < 5
  212.                     vel.Velocity = Vector3.new(0,0,0)
  213.                     wait(.5)
  214.                     players.LocalPlayer.Character.Humanoid.Sit = true
  215.                     vel:Destroy()
  216.                     players.LocalPlayer.Character.HumanoidRootPart.CFrame -= Vector3.new(0,3000,0)
  217.                     break
  218.                 end
  219.             end
  220.         end
  221.         if is then
  222.             task.wait(.5)
  223.             players.LocalPlayer.Character.Humanoid.Sit = false
  224.             local VirtualInputManager = game:GetService("VirtualInputManager")
  225.             VirtualInputManager:SendKeyEvent(true, Enum.KeyCode.E.Value, false, game)
  226.             task.wait(1)
  227.             VirtualInputManager:SendKeyEvent(false, Enum.KeyCode.E.Value, false, game)
  228.         end
  229.         if players.LocalPlayer.Character.Humanoid.Sit == false and (pos - players.LocalPlayer.Character.HumanoidRootPart.Position).magnitude > 500 then return end
  230.         players.LocalPlayer.Character.HumanoidRootPart.CFrame += Vector3.new(0,3000,0)
  231.         vel = Instance.new("BodyVelocity",game:GetService("Players").LocalPlayer.Character.HumanoidRootPart)
  232.         vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  233.         vel.Name = "Vel"
  234.         vel.P = 0
  235.         local d = (players.LocalPlayer.Character.HumanoidRootPart.Position - pos+Vector3.new(0,3000,0)).magnitude
  236.         cood = pos+Vector3.new(0,3000,0)
  237.         repeat
  238.             wait()
  239.             if players.LocalPlayer.Character.Humanoid.Sit then
  240.                 vel.Velocity = CFrame.lookAt(players.LocalPlayer.Character.HumanoidRootPart.Position,cood).LookVector * d / d * 400
  241.             else
  242.                 vel.Velocity = CFrame.lookAt(players.LocalPlayer.Character.HumanoidRootPart.Position,cood).LookVector * d / d * 50
  243.             end
  244.         until (players.LocalPlayer.Character.HumanoidRootPart.Position - cood).magnitude < 5
  245.         vel.Velocity = Vector3.new(0,0,0)
  246.         wait(.5)
  247.         players.LocalPlayer.Character.Humanoid.Sit = true
  248.         vel:Destroy()
  249.         players.LocalPlayer.Character.HumanoidRootPart.CFrame -= Vector3.new(0,3000,0)
  250.     end
  251. end
  252.  
  253. teleportm:Button("Plane",function()
  254.     teleport(Vector3.new(-1292.0791015625, 41.271751403808594, 2852.651611328125))
  255. end)
  256.  
  257. teleportm:Button("Power Plant",function()
  258.     teleport(Vector3.new(54.766014099121094, 20.965660095214844, 2326.134765625))
  259. end)
  260.  
  261. teleportm:Button("Jeweler",function()
  262.     teleport(Vector3.new(149.5464630126953, 17.965538024902344, 1368.3978271484375))
  263. end)
  264.  
  265. teleportm:Button("Criminal Base",function()
  266.     teleport(Vector3.new(-295.552978515625, 17.965667724609375, 1602.01806640625))
  267. end)
  268.  
  269. teleportm:Button("City Bank",function()
  270.     teleport(Vector3.new(-8.082767486572266, 17.965639114379883, 857.6124267578125))
  271. end)
  272.  
  273. teleportm:Button("Museum",function()
  274.     teleport(Vector3.new(1123.495849609375, 139.15896606445312, 1293.735107421875))
  275. end)
  276.  
  277. teleportm:Button("1M Shop",function()
  278.     teleport(Vector3.new(551.2893676757812, 63.955833435058594, -1647.752197265625))
  279. end)
  280.  
  281. teleportm:Button("Volcano",function()
  282.     teleport(Vector3.new(2212.631591796875, 328.26995849609375, -2503.282958984375))
  283. end)
  284.  
  285. teleportm:Button("Casino",function()
  286.     teleport(Vector3.new(-69.00199890136719, 154.98049926757812, -4707.578125))
  287. end)
  288.  
  289. teleportm:Button("Create Bank",function()
  290.     teleport(Vector3.new(-749.2611694335938, 19.252309799194336, -5957.173828125))
  291. end)
  292.  
  293. teleportm:Button("OilRig",function()
  294.     teleport(Vector3.new(-2838.67578125, 134.25027465820312, -3973.582275390625))
  295. end)
  296.  
  297. local Camera = workspace.CurrentCamera
  298. local Players = game:GetService("Players")
  299. local RunService = game:GetService("RunService")
  300. local UserInputService = game:GetService("UserInputService")
  301. local TweenService = game:GetService("TweenService")
  302. local LocalPlayer = Players.LocalPlayer
  303. local Holding = false
  304.  
  305. _G.TeamCheck = true
  306. _G.AimPart = "HumanoidRootPart"
  307. _G.Sensitivity = 0
  308. local parts = {}
  309. local function GetClosestPlayer()
  310.     local Target = nil
  311.  
  312.     for _, v in next, Players:GetPlayers() do
  313.         if v.Name ~= LocalPlayer.Name then
  314.             if _G.TeamCheck == true then
  315.                 if v.Team ~= LocalPlayer.Team then
  316.                     if v.Character ~= nil then
  317.                         if v.Character:FindFirstChild("HumanoidRootPart") ~= nil then
  318.                             if v.Character:FindFirstChild("Humanoid") ~= nil and v.Character:FindFirstChild("Humanoid").WalkSpeed > 0 and v.Character:FindFirstChild("Humanoid").Health ~= 0 and LocalPlayer.Character.Humanoid.Sit == false then
  319.                                 local ScreenPoint = Camera:WorldToScreenPoint(v.Character:WaitForChild("HumanoidRootPart", math.huge).Position)
  320.                                 local VectorDistance = (Vector2.new(UserInputService:GetMouseLocation().X, UserInputService:GetMouseLocation().Y) - Vector2.new(ScreenPoint.X, ScreenPoint.Y)).Magnitude
  321.  
  322.                                 if VectorDistance < 100 and (v.Character:FindFirstChild("HumanoidRootPart").Position - LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= _G.Dis then
  323.                                     local raparam = RaycastParams.new()
  324.                                     raparam.FilterType = Enum.RaycastFilterType.Exclude
  325.                                     local inv = {}
  326.                                     for i, v in parts do
  327.                                         table.insert(inv,v["Part"])
  328.                                     end
  329.                                     raparam.FilterDescendantsInstances = {inv,game:GetService("Players").LocalPlayer.Character}
  330.                                     local raycast = workspace:Raycast(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position,game:GetService("Players").LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame.LookVector * 100,raparam)
  331.                                     if raycast and raycast.Instance then
  332.                                         if not raycast.Instance:FindFirstChild("T") then
  333.                                             local b = raycast.Instance.Transparency
  334.                                             parts[raycast.Instance] = {["Transparency"] = b,["CanCollide"] = raycast.Instance.CanCollide,["Part"] = raycast.Instance}
  335.                                             local t = Instance.new("IntValue", raycast.Instance)
  336.                                             t.Name = "T"
  337.                                             raycast.Instance.CanCollide = false
  338.                                             raycast.Instance.Transparency = 1
  339.                                         end
  340.                                     end
  341.                                     TweenService:Create(Camera, TweenInfo.new(_G.Sensitivity, Enum.EasingStyle.Sine, Enum.EasingDirection.Out), {CFrame = CFrame.new(Camera.CFrame.Position, v.Character[_G.AimPart].Position)}):Play()
  342.                                 end
  343.                             end
  344.                         end
  345.                     end
  346.                 end
  347.             end
  348.         end
  349.     end
  350.  
  351.     return Target
  352. end
  353.  
  354. local value = 0
  355. UserInputService.InputBegan:Connect(function(key,event)
  356.     if event then return end
  357.     if key.UserInputType == Enum.UserInputType.MouseButton2 then
  358.         Holding = true
  359.     end
  360.     if key.KeyCode == Enum.KeyCode.W then
  361.         value = 1
  362.     end
  363.     if key.KeyCode == Enum.KeyCode.S then
  364.         value = -1
  365.     end
  366.     if key.UserInputType == Enum.UserInputType.Keyboard and key.KeyCode == Enum.KeyCode.Space and _G.inf then
  367.         Action(game:GetService'Players'.LocalPlayer.Character.Humanoid, function(self)
  368.             if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  369.                 Action(self.Parent.HumanoidRootPart, function(self)
  370.                     self.Velocity = Vector3.new(0, 50, 0);
  371.                 end)
  372.             end
  373.         end)
  374.     end
  375. end)
  376.  
  377. UserInputService.InputEnded:Connect(function(key,event)
  378.     if event then return end
  379.     if key.UserInputType == Enum.UserInputType.MouseButton2 then
  380.         Holding = false
  381.     end
  382.     if key.KeyCode == Enum.KeyCode.W then
  383.         value = 0
  384.     end
  385.     if key.KeyCode == Enum.KeyCode.S then
  386.         value = 0
  387.     end
  388. end)
  389.  local m = require(game:GetService("ReplicatedStorage").Resource.Settings)
  390. RunService.RenderStepped:Connect(function()
  391.     if _G.Nerf then
  392.     if game:GetService("Players").LocalPlayer.PlayerGui.GunShopGui.Container.Container.Main.Container:FindFirstChild("Slider") then
  393.         game:GetService("Players").LocalPlayer.PlayerGui.GunShopGui.Container.Container.Main.Container.Slider.Revolver.Top.Icon.Image = m.Images["NerfRevolver"]
  394.         end
  395.         if game:GetService("Players").LocalPlayer.PlayerGui.GunShopGui.Container.Container.Main.Container:FindFirstChild("Slider") then
  396.         game:GetService("Players").LocalPlayer.PlayerGui.GunShopGui.Container.Container.Main.Container.Slider.Pistol.Top.Icon.Image = m.Images["NerfPistol"]
  397.         end
  398.     if game:GetService("Players").LocalPlayer.Folder:FindFirstChild("Pistol") then
  399.         game:GetService("Players").LocalPlayer.Folder:FindFirstChild("Pistol"):SetAttribute("HotbarImageSrc",m.Images["NerfPistol"])
  400.         game:GetService("Players").LocalPlayer.Folder:FindFirstChild("Pistol").Name = "NerfPistol"
  401.     end
  402.     if game:GetService("Players").LocalPlayer.Folder:FindFirstChild("Revolver") then
  403.         game:GetService("Players").LocalPlayer.Folder:FindFirstChild("Revolver"):SetAttribute("HotbarImageSrc",m.Images["NerfRevolver"])
  404.         game:GetService("Players").LocalPlayer.Folder:FindFirstChild("Revolver").Name = "NerfRevolver"
  405.     end
  406.     else
  407.     if game:GetService("Players").LocalPlayer.PlayerGui.GunShopGui.Container.Container.Main.Container:FindFirstChild("Slider") then
  408.         game:GetService("Players").LocalPlayer.PlayerGui.GunShopGui.Container.Container.Main.Container.Slider.Revolver.Top.Icon.Image = m.Images["Revolver"]
  409.         end
  410.         if game:GetService("Players").LocalPlayer.PlayerGui.GunShopGui.Container.Container.Main.Container:FindFirstChild("Slider") then
  411.         game:GetService("Players").LocalPlayer.PlayerGui.GunShopGui.Container.Container.Main.Container.Slider.Pistol.Top.Icon.Image = m.Images["Pistol"]
  412.         end
  413.         if game:GetService("Players").LocalPlayer.Folder:FindFirstChild("NerfPistol") then
  414.         game:GetService("Players").LocalPlayer.Folder:FindFirstChild("NerfPistol"):SetAttribute("HotbarImageSrc",m.Images["Pistol"])
  415.         game:GetService("Players").LocalPlayer.Folder:FindFirstChild("NerfPistol").Name = "Pistol"
  416.     end
  417.     if game:GetService("Players").LocalPlayer.Folder:FindFirstChild("NerfRevolver") then
  418.         game:GetService("Players").LocalPlayer.Folder:FindFirstChild("NerfRevolver"):SetAttribute("HotbarImageSrc",m.Images["Revolver"])
  419.         game:GetService("Players").LocalPlayer.Folder:FindFirstChild("NerfRevolver").Name = "Revolver"
  420.     end
  421.     end
  422.     if Holding == true and _G.aim then
  423.         pcall(function()
  424.             GetClosestPlayer()
  425.         end)    
  426.     elseif Holding == false and _G.aim then
  427.         for i, v in parts do
  428.             v["Part"].CanCollide = v["CanCollide"]
  429.             v["Part"].Transparency = v["Transparency"]
  430.             if v["Part"]:FindFirstChild("T") then
  431.                 v["Part"].T:Destroy()
  432.             end
  433.         end
  434.         parts = {}
  435.     end
  436.     pcall(function()
  437.         game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = _G.speed
  438.     end)
  439. end)
  440.  
  441. while wait(1) do
  442.     pcall(function()
  443.         local tab = {}
  444.         for i,f in game:GetService("Workspace").MostWanted:GetChildren()[2].Background.MostWanted.Board:GetChildren() do
  445.             for i, v in game:GetService("Players"):GetChildren() do
  446.                 if f:IsA("Frame") and v.DisplayName == f.Stats.PlayerName.Text then
  447.                     if v.Character:FindFirstChild("BillboardGui") then
  448.                         v.Character.BillboardGui.Bounty.Text = f.Stats.Bounty.Text
  449.                         table.insert(tab,v.Name)
  450.                     end
  451.                 end
  452.             end
  453.         end
  454.  
  455.         for i, v in game:GetService("Players"):GetChildren() do
  456.             local is = false
  457.             for i, f in tab do
  458.                 if v.Name == f then
  459.                     is = true
  460.                     break
  461.                 end
  462.             end
  463.             if is == false then
  464.                 if v.Character:FindFirstChild("BillboardGui") then
  465.                     v.Character.BillboardGui.Bounty.Text = ""
  466.                 end
  467.             end
  468.         end
  469.     end)
  470.     for i, v in workspace:GetChildren() do
  471.         if _G.dropesp then
  472.             if v.Name == "Drop" then
  473.                 if not v:FindFirstChild("BillboardGui") then
  474.                     local bill = Instance.new("BillboardGui", v)
  475.                     bill.Adornee = v
  476.                     bill.Size = UDim2.new(0, 200,0, 50)
  477.                     bill.StudsOffset = Vector3.new(0,4,0)
  478.                     bill.AlwaysOnTop = true
  479.  
  480.                     local textlabel = Instance.new("TextLabel", bill)
  481.                     textlabel.Size = UDim2.new(1,0,1,0)
  482.                     textlabel.Position = UDim2.new(0,0,0,0)
  483.                     textlabel.Name = "TextLabelTitle"
  484.                     textlabel.Text = v.Name
  485.                     textlabel.BackgroundTransparency = 1
  486.                     textlabel.TextSize = 17
  487.                     textlabel.FontFace = Font.new("rbxasset://fonts/families/SourceSansPro.json", Enum.FontWeight.Bold, Enum.FontStyle.Normal)
  488.                     textlabel.TextColor3 = Color3.new(0.619608, 0.619608, 0.619608)
  489.                     local stroke = Instance.new("UIStroke", textlabel)
  490.                 end
  491.             end
  492.         elseif v.Name == "Drop" then
  493.             if v:FindFirstChild("BillboardGui") then
  494.                 v:FindFirstChild("BillboardGui"):Destroy()
  495.             end
  496.         end
  497.     end
  498.     if _G.Killed then
  499.         pcall(function()
  500.             if workspace:FindFirstChild("Drop") and workspace:FindFirstChild("Drop"):FindFirstChild("NPCs") then
  501.                 for i, f in game:GetService("Workspace").Drop.NPCs:GetChildren() do
  502.                     if (f.HumanoidRootPart.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  503.                         f.Humanoid.Health = 0
  504.                     end
  505.                 end
  506.             end
  507.             if workspace.OilRig:GetChildren()[1] then
  508.                 for i, f in workspace.OilRig.GuardsFolder:GetChildren() do
  509.                     if (f.HumanoidRootPart.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  510.                         f.Humanoid.Health = 0
  511.                     end
  512.                 end
  513.             end
  514.             if workspace.MansionRobbery.GuardsFolder:GetChildren()[1] then
  515.                 for i, f in workspace.MansionRobbery.GuardsFolder:GetChildren() do
  516.                     if (f.HumanoidRootPart.Position - game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 300 then
  517.                         f.Humanoid.Health = 0
  518.                     end
  519.                 end
  520.             end
  521.         end)
  522.     end
  523.     for i, v in game:GetService("Players"):GetChildren() do
  524.         if v.Character and v.Name ~= game:GetService("Players").LocalPlayer.Name and v.Team ~= game:GetService("Players").LocalPlayer.Team and _G.Hitbox then
  525.             if v.Character:FindFirstChild("HumanoidRootPart") then
  526.                 v.Character:FindFirstChild("HumanoidRootPart").Transparency = .8
  527.                 v.Character:FindFirstChild("HumanoidRootPart").CanCollide = false
  528.                 v.Character:FindFirstChild("HumanoidRootPart").Size = Vector3.new(7,7,7)
  529.             end
  530.         elseif _G.Hitbox == false or v.Team == game:GetService("Players").LocalPlayer.Team then
  531.             if v.Character and v.Character:FindFirstChild("HumanoidRootPart") then
  532.                 v.Character:FindFirstChild("HumanoidRootPart").Transparency = 1
  533.                 v.Character:FindFirstChild("HumanoidRootPart").CanCollide = true
  534.                 v.Character:FindFirstChild("HumanoidRootPart").Size = Vector3.new(1.8, 2.1, 0.95)
  535.             end
  536.         end
  537.     end
  538. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement