Advertisement
Fortin_Slug_Devs

Jailbreak GUI v2

Mar 13th, 2020
832
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 32.00 KB | None | 0 0
  1. -- Jailbreak V2.
  2. -- Have fun!
  3. -- Credits to Fortin Slug Scripting team for the entire Script.
  4.   local plr = game:GetService("Players").LocalPlayer
  5.  
  6.  
  7. local TpMethod = 2
  8.  
  9.  
  10.  
  11.  function JailbreakTp(...)
  12.     getfenv()["TpMethod" .. TpMethod](...)
  13. end
  14.  
  15. function TpMethod1(...)
  16.     local char = plr.Character
  17.     local root = char.HumanoidRootPart
  18.     local args = {...}
  19.     for i=0,1,0.05 do
  20.         wait()
  21.         root.CFrame = root.CFrame:lerp(CFrame.new(unpack(args,1,3)), i)
  22.     end
  23. end
  24.  
  25. function TpMethod2(...)
  26.     local args = {...}
  27.     local char = plr.Character
  28.     local target = Vector3.new(unpack(args,1,3))
  29.     local dist = (char:WaitForChild"HumanoidRootPart".Position - target).magnitude
  30.     dist = math.floor(dist / 100) + 1
  31.     for i=0,dist * 4 do
  32.         wait()
  33.         char:MoveTo(Vector3.new(...))
  34.     end
  35.     if args[#args] == true then
  36.         wait()
  37.         char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(unpack(args,1,#args - 1))
  38.     end
  39. end
  40.  
  41. function Tween(obj, t, properties)
  42.     local TweenService = game:GetService("TweenService")
  43.     local tweenInfo = TweenInfo.new(t,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0)
  44.     local tween = TweenService:Create(obj,tweenInfo,properties)
  45.     tween:Play()
  46.     return tween
  47. end
  48. --something else
  49.  
  50. local function CreateButton(text,parent)
  51.     return Create "TextButton" {
  52.         Active = true,
  53.         AutoButtonColor = true,
  54.         BackgroundColor3 = Color3.fromRGB(0,155,232),
  55.         BorderSizePixel = 1,
  56.         Size = UDim2.new(0,100,0,30),
  57.         Font = "SourceSansBold",
  58.         TextColor3 = Color3.new(1,1,0),
  59.         TextSize = 20,
  60.         Text = text,
  61.         Parent = parent
  62.     }
  63. end
  64.  
  65.  -- Objects
  66.  
  67. local JAILBREAKERV2 = Instance.new("ScreenGui")
  68. local Main = Instance.new("Frame")
  69. local TPS = Instance.new("Frame")
  70. local gas = Instance.new("TextButton")
  71. local donut = Instance.new("TextButton")
  72. local JewOut = Instance.new("TextButton")
  73. local JewIn = Instance.new("TextButton")
  74. local BankVault = Instance.new("TextButton")
  75. local BankFront = Instance.new("TextButton")
  76. local crim1 = Instance.new("TextButton")
  77. local crim2 = Instance.new("TextButton")
  78. local train = Instance.new("TextButton")
  79. local BTools = Instance.new("TextButton")
  80. local Gravity = Instance.new("TextButton")
  81. local InfiniteAmmo = Instance.new("TextButton")
  82. local InfiniteHealth = Instance.new("TextButton")
  83. local InfiniteNitro = Instance.new("TextButton")
  84. local Noclip = Instance.new("TextButton")
  85. local RemoveALL = Instance.new("TextButton")
  86. local Walkspeed = Instance.new("TextButton")
  87. local autoarrest = Instance.new("TextButton")
  88. local Guns = Instance.new("TextButton")
  89. local ClickTP = Instance.new("TextButton")
  90. local Platform = Instance.new("TextButton")
  91. local JB2 = Instance.new("Frame")
  92. local BankAutoRobBtn = Instance.new("TextButton")
  93. local BankStatus = Instance.new("TextLabel")
  94. local JewelryStatus = Instance.new("TextLabel")
  95. local Top = Instance.new("Frame")
  96. local Close = Instance.new("TextButton")
  97. local JailbreakerV2 = Instance.new("TextLabel")
  98. local Name = Instance.new("Frame")
  99. local JailBreak = Instance.new("TextButton")
  100. local JailBreak2 = Instance.new("TextButton")
  101. local Open = Instance.new("TextButton")
  102.  
  103. -- Properties
  104.  
  105. JAILBREAKERV2.Name = "JAILBREAKER V2"
  106. JAILBREAKERV2.Parent = game.CoreGui
  107.  
  108. Main.Name = "Main"
  109. Main.Parent = JAILBREAKERV2
  110. Main.Active = true
  111. Main.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  112. Main.BorderColor3 = Color3.new(0.0627451, 0.101961, 0.129412)
  113. Main.BorderSizePixel = 0
  114. Main.Position = UDim2.new(0.400196671, 0, 0.215415016, 0)
  115. Main.Size = UDim2.new(0, 400, 0, 342)
  116. Main.Draggable = true
  117.  
  118. TPS.Name = "TPS"
  119. TPS.Parent = Main
  120. TPS.BackgroundColor3 = Color3.new(1, 1, 0)
  121. TPS.BackgroundTransparency = 1
  122. TPS.Position = UDim2.new(0, 0, 0.453216374, 0)
  123. TPS.Size = UDim2.new(0, 400, 0, 187)
  124.  
  125. gas.Name = "gas"
  126. gas.Parent = TPS
  127. gas.BackgroundColor3 = Color3.new(1, 0, 0)
  128. gas.Position = UDim2.new(0.0120000001, 0, 0.800000012, 0)
  129. gas.Size = UDim2.new(0, 80, 0, 30)
  130. gas.Font = Enum.Font.ArialBold
  131. gas.Text = "Gas Station"
  132. gas.TextScaled = true
  133. gas.TextSize = 14
  134. gas.TextWrapped = true
  135. gas.MouseButton1Down:connect(function()
  136.     for i=1,32 do
  137.         wait(.01)
  138.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1586.41101, 17.8481865, 709.37262) + Vector3.new(1,0,0)
  139.     end
  140. end)
  141.  
  142. donut.Name = "donut"
  143. donut.Parent = TPS
  144. donut.BackgroundColor3 = Color3.new(1, 0, 0)
  145. donut.Position = UDim2.new(0.379999965, 0, -0.00865991414, 0)
  146. donut.Size = UDim2.new(0, 80, 0, 30)
  147. donut.Font = Enum.Font.ArialBold
  148. donut.Text = "Donut Shop"
  149. donut.TextScaled = true
  150. donut.TextSize = 14
  151. donut.TextWrapped = true
  152. donut.MouseButton1Down:connect(function()
  153.     for i=1,32 do
  154.         wait(.01)
  155.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(257.191101, 17.81828869, -1753.11206) + Vector3.new(1,0,0)
  156.     end
  157. end)
  158. JewOut.Name = "JewOut"
  159. JewOut.Parent = TPS
  160. JewOut.BackgroundColor3 = Color3.new(1, 0, 0)
  161. JewOut.Position = UDim2.new(0.0130000003, 0, 0.200000003, 0)
  162. JewOut.Size = UDim2.new(0, 80, 0, 30)
  163. JewOut.Font = Enum.Font.ArialBold
  164. JewOut.Text = "Jewelry Out"
  165. JewOut.TextScaled = true
  166. JewOut.TextSize = 14
  167. JewOut.TextWrapped = true
  168. JewOut.MouseButton1Down:connect(function()
  169.     for i=1,32 do
  170.         wait(.01)
  171.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175) + Vector3.new(1,0,0)
  172.     end
  173. end)
  174. JewIn.Name = "JewIn"
  175. JewIn.Parent = TPS
  176. JewIn.BackgroundColor3 = Color3.new(1, 0, 0)
  177. JewIn.Position = UDim2.new(0.0130000003, 0, 0, 0)
  178. JewIn.Size = UDim2.new(0, 80, 0, 30)
  179. JewIn.Font = Enum.Font.ArialBold
  180. JewIn.Text = "Jewelry Inside"
  181. JewIn.TextScaled = true
  182. JewIn.TextSize = 14
  183. JewIn.TextWrapped = true
  184. JewIn.MouseButton1Down:connect(function()
  185.     for i=1,32 do
  186.         wait(.01)
  187.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(133.300705, 17.9375954, 1316.42407) + Vector3.new(1,0,0)
  188.     end
  189. end)
  190. BankVault.Name = "BankVault"
  191. BankVault.Parent = TPS
  192. BankVault.BackgroundColor3 = Color3.new(1, 0, 0)
  193. BankVault.Position = UDim2.new(0.0130000003, 0, -0.200000003, 0)
  194. BankVault.Size = UDim2.new(0, 80, 0, 30)
  195. BankVault.Font = Enum.Font.ArialBold
  196. BankVault.Text = "BankVault"
  197. BankVault.TextScaled = true
  198. BankVault.TextSize = 14
  199. BankVault.TextWrapped = true
  200. BankVault.MouseButton1Down:connect(function()
  201.     for i=1,32 do
  202.         wait(.01)
  203.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(18.3854294, 0.765628457, 815.506348) + Vector3.new(1,0,0)
  204.     end
  205. end)
  206. BankFront.Name = "BankFront"
  207. BankFront.Parent = TPS
  208. BankFront.BackgroundColor3 = Color3.new(1, 0, 0)
  209. BankFront.Position = UDim2.new(0.0130000003, 0, -0.379999995, 0)
  210. BankFront.Size = UDim2.new(0, 80, 0, 30)
  211. BankFront.Font = Enum.Font.ArialBold
  212. BankFront.Text = "BankFront"
  213. BankFront.TextScaled = true
  214. BankFront.TextSize = 14
  215. BankFront.TextWrapped = true
  216. BankFront.MouseButton1Down:connect(function()
  217.     for i=1,32 do
  218.         wait(.01)
  219.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147) + Vector3.new(1,0,0)
  220.     end
  221. end)
  222. crim1.Name = "crim1"
  223. crim1.Parent = TPS
  224. crim1.BackgroundColor3 = Color3.new(1, 0, 0)
  225. crim1.Position = UDim2.new(0.0130000003, 0, 0.400000006, 0)
  226. crim1.Size = UDim2.new(0, 80, 0, 30)
  227. crim1.Font = Enum.Font.ArialBold
  228. crim1.Text = "Criminal Base 1"
  229. crim1.TextScaled = true
  230. crim1.TextSize = 14
  231. crim1.TextWrapped = true
  232. crim1.MouseButton1Down:connect(function()
  233.     for i=1,32 do
  234.         wait(.01)
  235.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261) + Vector3.new(1,0,0)
  236.     end
  237. end)
  238. crim2.Name = "crim2"
  239. crim2.Parent = TPS
  240. crim2.BackgroundColor3 = Color3.new(1, 0, 0)
  241. crim2.Position = UDim2.new(0.0120000001, 0, 0.600000024, 0)
  242. crim2.Size = UDim2.new(0, 80, 0, 30)
  243. crim2.Font = Enum.Font.ArialBold
  244. crim2.Text = "Criminal Base 2"
  245. crim2.TextScaled = true
  246. crim2.TextSize = 14
  247. crim2.TextWrapped = true
  248. crim2.MouseButton1Down:connect(function()
  249.     for i=1,32 do
  250.         wait(.01)
  251.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1650.80896, 49.863636, -1770.66626) + Vector3.new(1,0,0)
  252.     end
  253. end)
  254. train.Name = "train"
  255. train.Parent = TPS
  256. train.BackgroundColor3 = Color3.new(1, 0, 0)
  257. train.Position = UDim2.new(0.379999995, 0, -0.379000008, 0)
  258. train.Size = UDim2.new(0, 80, 0, 30)
  259. train.Font = Enum.Font.ArialBold
  260. train.Text = "Train Spawn"
  261. train.TextScaled = true
  262. train.TextSize = 14
  263. train.TextWrapped = true
  264. train.MouseButton1Down:connect(function()
  265.     for i=1,32 do
  266.         wait(.01)
  267.         game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1954.95007, 68.0448606, -603.844116) + Vector3.new(1,0,0)
  268.     end
  269. end)
  270. BTools.Name = "BTools"
  271. BTools.Parent = TPS
  272. BTools.BackgroundColor3 = Color3.new(1, 0, 0)
  273. BTools.Position = UDim2.new(0.75, 0, 0.396069616, 0)
  274. BTools.Size = UDim2.new(0, 80, 0, 30)
  275. BTools.Font = Enum.Font.ArialBold
  276. BTools.Text = "BTools"
  277. BTools.TextScaled = true
  278. BTools.TextSize = 14
  279. BTools.TextWrapped = true
  280. BTools.MouseButton1Down:connect(function()
  281.     game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  282. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  283.    if child.ClassName == "Part" then
  284.        child.Locked = false
  285.    end
  286.    if child.ClassName == "MeshPart" then
  287.        child.Locked = false
  288.    end
  289.    if child.ClassName == "UnionOperation" then
  290.        child.Locked = false
  291.    end
  292.    if child.ClassName == "Model" then
  293.        for index, chil in pairs(child:GetChildren()) do
  294.            if chil.ClassName == "Part" then
  295.                chil.Locked = false
  296.            end
  297.            if chil.ClassName == "MeshPart" then
  298.                chil.Locked = false
  299.            end
  300.            if chil.ClassName == "UnionOperation" then
  301.                chil.Locked = false
  302.            end
  303.            if chil.ClassName == "Model" then
  304.                for index, childe in pairs(chil:GetChildren()) do
  305.                    if childe.ClassName == "Part" then
  306.                        childe.Locked = false
  307.                    end
  308.                    if childe.ClassName == "MeshPart" then
  309.                        childe.Locked = false
  310.                    end
  311.                    if childe.ClassName == "UnionOperation" then
  312.                        childe.Locked = false
  313.                    end
  314.                    if childe.ClassName == "Model" then
  315.                        for index, childeo in pairs(childe:GetChildren()) do
  316.                            if childeo.ClassName == "Part" then
  317.                                childeo.Locked = false
  318.                            end
  319.                            if childeo.ClassName == "MeshPart" then
  320.                                childeo.Locked = false
  321.                            end
  322.                            if childeo.ClassName == "UnionOperation" then
  323.                                childeo.Locked = false
  324.                            end
  325.                            if childeo.ClassName == "Model" then
  326.                            end
  327.                        end
  328.                    end
  329.                end
  330.            end
  331.        end
  332.    end
  333. end
  334. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  335. c.BinType = Enum.BinType.Hammer
  336. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  337. c.BinType = Enum.BinType.Clone
  338. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  339. c.BinType = Enum.BinType.Grab
  340. end)
  341. Gravity.Name = "Gravity"
  342. Gravity.Parent = TPS
  343. Gravity.BackgroundColor3 = Color3.new(1, 0, 0)
  344. Gravity.Position = UDim2.new(0.75, 0, -0.198233396, 0)
  345. Gravity.Size = UDim2.new(0, 80, 0, 30)
  346. Gravity.Font = Enum.Font.ArialBold
  347. Gravity.Text = "Gravity"
  348. Gravity.TextScaled = true
  349. Gravity.TextSize = 14
  350. Gravity.TextWrapped = true
  351. Gravity.MouseButton1Down:connect(function()
  352. if Gravity == true then
  353. Gravity = false
  354. game.workspace.Gravity = 196.2
  355. else
  356. Gravity = true
  357. game.workspace.Gravity = 45
  358. end
  359. end)
  360. InfiniteAmmo.Name = "InfiniteAmmo"
  361. InfiniteAmmo.Parent = TPS
  362. InfiniteAmmo.BackgroundColor3 = Color3.new(1, 0, 0)
  363. InfiniteAmmo.Position = UDim2.new(0.379999995, 0, 0.398402065, 0)
  364. InfiniteAmmo.Size = UDim2.new(0, 80, 0, 30)
  365. InfiniteAmmo.Font = Enum.Font.ArialBold
  366. InfiniteAmmo.Text = "Infinite Ammo"
  367. InfiniteAmmo.TextScaled = true
  368. InfiniteAmmo.TextSize = 14
  369. InfiniteAmmo.TextWrapped = true
  370. InfiniteAmmo.MouseButton1Down:connect(function()
  371.     game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Ammo.Current:Destroy()
  372. end)
  373. InfiniteHealth.Name = "InfiniteHealth"
  374. InfiniteHealth.Parent = TPS
  375. InfiniteHealth.BackgroundColor3 = Color3.new(1, 0, 0)
  376. InfiniteHealth.Position = UDim2.new(0.75, 0, 0.000297799706, 0)
  377. InfiniteHealth.Size = UDim2.new(0, 80, 0, 30)
  378. InfiniteHealth.Font = Enum.Font.ArialBold
  379. InfiniteHealth.Text = "Infinite Health"
  380. InfiniteHealth.TextScaled = true
  381. InfiniteHealth.TextSize = 14
  382. InfiniteHealth.TextWrapped = true
  383. InfiniteHealth.MouseButton1Down:connect(function()
  384.     game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
  385. local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
  386. l.Parent = game:GetService("Players").LocalPlayer.Character
  387. l.Name = "Humanoid"
  388. wait(0.1)
  389. game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
  390. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
  391. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
  392. wait(0.1)
  393. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
  394. game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  395. end)
  396. InfiniteNitro.Name = "InfiniteNitro"
  397. InfiniteNitro.Parent = TPS
  398. InfiniteNitro.BackgroundColor3 = Color3.new(1, 0, 0)
  399. InfiniteNitro.Position = UDim2.new(0.75, 0, 0.19987087, 0)
  400. InfiniteNitro.Size = UDim2.new(0, 80, 0, 30)
  401. InfiniteNitro.Font = Enum.Font.ArialBold
  402. InfiniteNitro.Text = "Infinite Nitro"
  403. InfiniteNitro.TextScaled = true
  404. InfiniteNitro.TextSize = 14
  405. InfiniteNitro.TextWrapped = true
  406. InfiniteNitro.MouseButton1Down:connect(function()
  407.     game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "69696969"
  408.     game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
  409. end)
  410. Noclip.Name = "Noclip"
  411. Noclip.Parent = TPS
  412. Noclip.BackgroundColor3 = Color3.new(1, 0, 0)
  413. Noclip.Position = UDim2.new(0.379999995, 0, 0.60189575, 0)
  414. Noclip.Size = UDim2.new(0, 80, 0, 30)
  415. Noclip.Font = Enum.Font.ArialBold
  416. Noclip.Text = "Noclip[B]"
  417. Noclip.TextScaled = true
  418. Noclip.TextSize = 14
  419. Noclip.TextWrapped = true
  420. Noclip.MouseButton1Down:connect(function()
  421.     local noclipplayer = game:GetService("Players").LocalPlayer
  422.     local noclipmouse = noclipplayer:GetMouse()
  423.    
  424.     local donoclip = false
  425.     local noclip = false
  426.    
  427.     function b_noclip(key)
  428.         if (key == "b") then
  429.             if noclip == false then
  430.                 donoclip = true
  431.                
  432.                 noclip = true
  433.             elseif noclip == true then
  434.                 donoclip = false
  435.                
  436.                 noclip = false
  437.             end
  438.         end
  439.     end
  440.    
  441.     noclipmouse.KeyDown:connect(b_noclip)
  442.    
  443.     game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  444.         if obj ~= workspace.Terrain then
  445.             if donoclip == true then
  446.                 obj.CanCollide = false
  447.             else
  448.                 obj.CanCollide = true
  449.             end
  450.         end
  451.     end)
  452. end)
  453. RemoveALL.Name = "RemoveALL"
  454. RemoveALL.Parent = TPS
  455. RemoveALL.BackgroundColor3 = Color3.new(1, 0, 0)
  456. RemoveALL.Position = UDim2.new(0.379999965, 0, -0.199895769, 0)
  457. RemoveALL.Size = UDim2.new(0, 80, 0, 30)
  458. RemoveALL.Font = Enum.Font.ArialBold
  459. RemoveALL.Text = "Remove ALL"
  460. RemoveALL.TextScaled = true
  461. RemoveALL.TextSize = 14
  462. RemoveALL.TextWrapped = true
  463. RemoveALL.MouseButton1Down:connect(function()  
  464.     game.Workspace.Cells:Remove()
  465.    
  466.     for i,v in pairs(workspace.Doors:GetChildren()) do
  467.     v:Destroy()
  468.    
  469.     end
  470. end)
  471.  
  472. RemoveALL.MouseButton1Down:connect(function()
  473.     local banklasers = game:GetService("Workspace").Banks:GetChildren()
  474.     banklasers[1].Lasers:Destroy()
  475. end)
  476.  
  477. RemoveALL.MouseButton1Down:connect(function()
  478. local jewelry = game:GetService("Workspace").Jewelrys:GetChildren()
  479.    
  480.     for i = 1,4 do
  481.     local xd = jewelry[1].Model.BarbedWire
  482.     xd:Destroy()
  483.     end
  484. end)
  485.  
  486. RemoveALL.MouseButton1Down:connect(function()
  487.     local banklasers = game:GetService("Workspace").Banks:GetChildren()
  488.     banklasers[1].Door.Model:Destroy()
  489. end)
  490. Walkspeed.Name = "Walkspeed"
  491. Walkspeed.Parent = TPS
  492. Walkspeed.BackgroundColor3 = Color3.new(1, 0, 0)
  493. Walkspeed.Position = UDim2.new(0.75, 0, -0.381181598, 0)
  494. Walkspeed.Size = UDim2.new(0, 80, 0, 30)
  495. Walkspeed.Font = Enum.Font.ArialBold
  496. Walkspeed.Text = "Walkspeed [X]"
  497. Walkspeed.TextScaled = true
  498. Walkspeed.TextSize = 14
  499. Walkspeed.TextWrapped = true
  500. Walkspeed.MouseButton1Down:connect(function()
  501.     local walkspeedplayer = game:GetService("Players").LocalPlayer
  502.     local walkspeedmouse = walkspeedplayer:GetMouse()
  503.    
  504.     local walkspeedenabled = false
  505.    
  506.     function x_walkspeed(key)
  507.         if (key == "x") then
  508.             if walkspeedenabled == false then
  509.                 _G.WS = 200;
  510.                 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  511.                 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  512.                 Humanoid.WalkSpeed = _G.WS;
  513.                 end)
  514.                 Humanoid.WalkSpeed = _G.WS;
  515.                
  516.                 walkspeedenabled = true
  517.             elseif walkspeedenabled == true then
  518.                 _G.WS = 20;
  519.                 local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  520.                 Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  521.                 Humanoid.WalkSpeed = _G.WS;
  522.                 end)
  523.                 Humanoid.WalkSpeed = _G.WS;
  524.                
  525.                 walkspeedenabled = false
  526.             end
  527.         end
  528.     end
  529.    
  530.     walkspeedmouse.KeyDown:connect(x_walkspeed)
  531.    
  532. end)
  533. autoarrest.Name = "autoarrest"
  534. autoarrest.Parent = TPS
  535. autoarrest.BackgroundColor3 = Color3.new(1, 0, 0)
  536. autoarrest.Position = UDim2.new(0.379999995, 0, 0.819905162, 0)
  537. autoarrest.Size = UDim2.new(0, 80, 0, 30)
  538. autoarrest.Font = Enum.Font.ArialBold
  539. autoarrest.Text = "Auto Arrest"
  540. autoarrest.TextScaled = true
  541. autoarrest.TextSize = 14
  542. autoarrest.TextWrapped = true
  543. autoarrest.MouseButton1Down:connect(function()
  544. local Player = game.Players.LocalPlayer
  545. wait(0.5)
  546. for i,v in pairs(game.Teams.Criminal:GetPlayers()) do
  547.     repeat
  548.     wait()
  549.     Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  550.     until v.Team.Name ~= "Criminal"
  551. end
  552.  
  553. end)
  554. Guns.Name = "Guns"
  555. Guns.Parent = TPS
  556. Guns.BackgroundColor3 = Color3.new(1, 0, 0)
  557. Guns.Position = UDim2.new(0.379999995, 0, 0.198208511, 0)
  558. Guns.Size = UDim2.new(0, 80, 0, 30)
  559. Guns.Font = Enum.Font.ArialBold
  560. Guns.Text = "Guns"
  561. Guns.TextScaled = true
  562. Guns.TextSize = 14
  563. Guns.TextWrapped = true
  564. local Giver = nil
  565. Guns.MouseButton1Click:connect(function()
  566.     if not workspace:FindFirstChild("Givers") then return end
  567.     if Giver then
  568.         for i,v in pairs(Giver) do
  569.             v.ClickDetector.Parent = v.OriginalParent
  570.             v.Event:Disconnect()
  571.         end
  572.         getmetatable(Giver):Destroy()
  573.     end
  574.     Giver = {}
  575.     local g = Giver
  576.     local p = Instance.new("Part", workspace)
  577.     p.Anchored = true
  578.     p.CanCollide = false
  579.     p.CFrame = plr.Character:WaitForChild"HumanoidRootPart".CFrame
  580.     setmetatable(Giver, {__metatable = p})
  581.     for i,v in pairs(workspace.Givers:GetChildren()) do
  582.         local cd = v:FindFirstChildOfClass"ClickDetector"
  583.         if cd then
  584.             local newt = {}
  585.             newt.ClickDetector = cd
  586.             newt.OriginalParent = v
  587.             cd.Parent = p
  588.             newt.Event = cd.MouseClick:connect(function()
  589.                 cd.Parent = v
  590.             end)
  591.             table.insert(Giver, newt)
  592.         end
  593.     end
  594.     spawn(function()
  595.         wait(10)
  596.         if Giver == g then
  597.             Giver = nil
  598.             for i,v in pairs(g) do
  599.                 v.ClickDetector.Parent = v.OriginalParent
  600.                 v.Event:Disconnect()
  601.             end
  602.             getmetatable(g):Destroy()
  603.         end
  604.     end)
  605. end)
  606. ClickTP.Name = "ClickTP"
  607. ClickTP.Parent = TPS
  608. ClickTP.BackgroundColor3 = Color3.new(1, 0, 0)
  609. ClickTP.Position = UDim2.new(0.75, 0, 0.79891324, 0)
  610. ClickTP.Size = UDim2.new(0, 80, 0, 30)
  611. ClickTP.Font = Enum.Font.ArialBold
  612. ClickTP.Text = "M4A4"
  613. ClickTP.TextScaled = true
  614. ClickTP.TextSize = 14
  615. ClickTP.TextWrapped = true
  616. ClickTP.MouseButton1Down:connect(function()
  617.     local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  618.  
  619.     a = Instance.new("Part", workspace)
  620.     a.Anchored = true
  621.     a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  622.     a.CanCollide = false
  623.    
  624.         for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  625.     if v.Name == "Station" then
  626.     for a, b in pairs(v:GetChildren()) do
  627.     if b:IsA("StringValue") then
  628.     if b.Value == "RifleSWAT" then
  629.     v.CFrame = CFrame.new(hit)
  630.     end
  631.     end
  632.     end
  633.     end
  634.     end
  635. end)
  636.  
  637. Platform.Name = "Platform"
  638. Platform.Parent = TPS
  639. Platform.BackgroundColor3 = Color3.new(1, 0, 0)
  640. Platform.Position = UDim2.new(0.75, 0, 0.599861085, 0)
  641. Platform.Size = UDim2.new(0, 80, 0, 30)
  642. Platform.Font = Enum.Font.ArialBold
  643. Platform.Text = "Platform"
  644. Platform.TextScaled = true
  645. Platform.TextSize = 14
  646. Platform.TextWrapped = true
  647. Platform.MouseButton1Click:connect(function()
  648.     local p = Instance.new("Part", workspace)
  649.     p.Size = Vector3.new(30,0.5,30)
  650.     p.Anchored = true
  651.     p.Position = plr.Character.HumanoidRootPart.Position + Vector3.new(0,15,0)
  652.     plr.Character:MoveTo(p.Position + Vector3.new(0,1,0))
  653.     spawn(function()
  654.         while p.Parent do
  655.             wait(1)
  656.             if (plr.Character.HumanoidRootPart.Position - p.Position).magnitude > 20 then
  657.                 p:Destroy()
  658.             end
  659.         end
  660.     end)
  661. end)
  662. JB2.Name = "JB2"
  663. JB2.Parent = Main
  664. JB2.Active = true
  665. JB2.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  666. JB2.BackgroundTransparency = 1
  667. JB2.Position = UDim2.new(0, 0, 0.280701756, 0)
  668. JB2.Size = UDim2.new(0, 400, 0, 246)
  669. JB2.Visible = false
  670.  
  671. BankAutoRobBtn.Name = "BankAutoRobBtn"
  672. BankAutoRobBtn.Parent = JB2
  673. BankAutoRobBtn.BackgroundColor3 = Color3.new(1, 0, 0)
  674. BankAutoRobBtn.Position = UDim2.new(0.0175000001, 0, -0.0433333293, 0)
  675. BankAutoRobBtn.Size = UDim2.new(0, 385, 0, 35)
  676. BankAutoRobBtn.Font = Enum.Font.ArialBold
  677. BankAutoRobBtn.Text = "Bank Auto Rob"
  678. BankAutoRobBtn.TextScaled = true
  679. BankAutoRobBtn.TextSize = 14
  680. BankAutoRobBtn.TextWrapped = true
  681. BankAutoRobBtn.MouseButton1Click:connect(function()
  682.     local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  683.     local Info = Bank.Extra.Sign
  684.     if Info.Decal.Transparency == 0 then
  685.         game:GetService("StarterGui"):SetCore("SendNotification",{
  686.             Title = "Bank is closed!",
  687.             Text = "You need to wait for the bank to open!",
  688.             Duration = 7,
  689.             Button1 = "Dismiss",
  690.         })
  691.         return
  692.     end
  693.     local bankpos = Vector3.new(Info.Position.X,0,Info.Position.Z)
  694.     local root = plr.Character.HumanoidRootPart
  695.     local plrpos = Vector3.new(root.Position.X,0,root.Position.Z)
  696.    
  697.     if (bankpos - plrpos).magnitude > 150 then
  698.         local cb = Instance.new"BindableFunction"
  699.  
  700.         cb.OnInvoke = function(arg)
  701.             if arg == "Teleport" then
  702.                 JailbreakTp(10, 18, 784)
  703.             end
  704.         end
  705.        
  706.         game:GetService("StarterGui"):SetCore("SendNotification",{
  707.             Title = "You are too far!",
  708.             Text = "You need to get closer to the bank (use tp)",
  709.             Duration = 7,
  710.             Button1 = "Dismiss",
  711.             Button2 = "Teleport",
  712.             Callback = cb
  713.         })
  714.     else
  715.         RobTheBank()
  716.     end
  717. end)
  718.  
  719. BankStatus.Name = "BankStatus"
  720. BankStatus.Parent = JB2
  721. BankStatus.BackgroundColor3 = Color3.new(0.333333, 0, 1)
  722. BankStatus.Position = UDim2.new(0.310000002, 0, 0.84859097, 0)
  723. BankStatus.Size = UDim2.new(0, 101, 0, 26)
  724. BankStatus.Font = Enum.Font.SourceSans
  725. BankStatus.Text = "Bank:"
  726. BankStatus.TextColor3 = Color3.new(0, 0, 0)
  727. BankStatus.TextSize = 14
  728.  
  729. JewelryStatus.Name = "JewelryStatus"
  730. JewelryStatus.Parent = JB2
  731. JewelryStatus.BackgroundColor3 = Color3.new(0.333333, 0, 1)
  732. JewelryStatus.Position = UDim2.new(0.0175000001, 0, 0.853387713, 0)
  733. JewelryStatus.Size = UDim2.new(0, 101, 0, 26)
  734. JewelryStatus.Font = Enum.Font.SourceSans
  735. JewelryStatus.Text = "Jewelry:"
  736. JewelryStatus.TextColor3 = Color3.new(0, 0, 0)
  737. JewelryStatus.TextSize = 14
  738.  
  739. Top.Name = "Top"
  740. Top.Parent = Main
  741. Top.BackgroundColor3 = Color3.new(0.545098, 0, 0)
  742. Top.BorderColor3 = Color3.new(0.0627451, 0.101961, 0.129412)
  743. Top.BorderSizePixel = 0
  744. Top.Position = UDim2.new(0, 0, 0.00028885901, 0)
  745. Top.Size = UDim2.new(0, 400, 0, 30)
  746.  
  747. Close.Name = "Close"
  748. Close.Parent = Top
  749. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  750. Close.BackgroundTransparency = 1
  751. Close.Position = UDim2.new(0.92750001, 0, 0, 0)
  752. Close.Size = UDim2.new(0, 29, 0, 30)
  753. Close.Font = Enum.Font.SourceSans
  754. Close.Text = "X"
  755. Close.TextColor3 = Color3.new(0.4, 1, 0)
  756. Close.TextScaled = true
  757. Close.TextSize = 14
  758. Close.TextWrapped = true
  759. Close.MouseButton1Down:connect(function()
  760.     Main.Visible = false
  761.     Open.Visible = true
  762. end)
  763. JailbreakerV2.Name = "Jailbreaker V2"
  764. JailbreakerV2.Parent = Top
  765. JailbreakerV2.BackgroundColor3 = Color3.new(1, 1, 1)
  766. JailbreakerV2.BackgroundTransparency = 1
  767. JailbreakerV2.Position = UDim2.new(0.280000001, 0, 0, 0)
  768. JailbreakerV2.Size = UDim2.new(0, 160, 0, 30)
  769. JailbreakerV2.Font = Enum.Font.Cartoon
  770. JailbreakerV2.Text = "Jailbreaker V2"
  771. JailbreakerV2.TextColor3 = Color3.new(0.423529, 1, 0.0392157)
  772. JailbreakerV2.TextScaled = true
  773. JailbreakerV2.TextSize = 14
  774. JailbreakerV2.TextWrapped = true
  775. JailbreakerV2.TextXAlignment = Enum.TextXAlignment.Left
  776. JailbreakerV2.TextYAlignment = Enum.TextYAlignment.Top
  777.  
  778. Name.Name = "Name"
  779. Name.Parent = Main
  780. Name.BackgroundColor3 = Color3.new(0.85098, 0.14902, 0.054902)
  781. Name.BorderColor3 = Color3.new(0.0627451, 0.101961, 0.129412)
  782. Name.BorderSizePixel = 0
  783. Name.Position = UDim2.new(0, 0, 0.0862733424, 0)
  784. Name.Size = UDim2.new(0, 400, 0, 50)
  785.  
  786. JailBreak.Name = "JailBreak"
  787. JailBreak.Parent = Name
  788. JailBreak.BackgroundColor3 = Color3.new(1, 0.0823529, 0)
  789. JailBreak.Position = UDim2.new(0.0125000002, 0, 0.239999995, 0)
  790. JailBreak.Size = UDim2.new(0, 100, 0, 25)
  791. JailBreak.Font = Enum.Font.Cartoon
  792. JailBreak.Text = "JailBreak"
  793. JailBreak.TextColor3 = Color3.new(0, 0, 0)
  794. JailBreak.TextScaled = true
  795. JailBreak.TextSize = 14
  796. JailBreak.TextWrapped = true
  797. JailBreak.MouseButton1Down:connect(function()
  798.     TPS.Visible = true
  799.     JB2.Visible = false
  800. end)
  801. JailBreak2.Name = "JailBreak 2"
  802. JailBreak2.Parent = Name
  803. JailBreak2.BackgroundColor3 = Color3.new(1, 0.0823529, 0)
  804. JailBreak2.Position = UDim2.new(0.354999989, 0, 0.239999995, 0)
  805. JailBreak2.Size = UDim2.new(0, 100, 0, 25)
  806. JailBreak2.Font = Enum.Font.Cartoon
  807. JailBreak2.Text = "Jailbreak 2"
  808. JailBreak2.TextColor3 = Color3.new(0, 0, 0)
  809. JailBreak2.TextScaled = true
  810. JailBreak2.TextSize = 14
  811. JailBreak2.TextWrapped = true
  812. JailBreak2.MouseButton1Down:connect(function()
  813.     TPS.Visible = false
  814.     JB2.Visible = true
  815. end)
  816. Open.Name = "Open"
  817. Open.Parent = JAILBREAKERV2
  818. Open.BackgroundColor3 = Color3.new(1, 1, 0)
  819. Open.Position = UDim2.new(0.5, 0, 0, 0)
  820. Open.Size = UDim2.new(0, 100, 0, 30)
  821. Open.Visible = false
  822. Open.Font = Enum.Font.SourceSans
  823. Open.Text = "Open"
  824. Open.TextColor3 = Color3.new(1, 0.0666667, 0)
  825. Open.TextScaled = true
  826. Open.TextSize = 14
  827. Open.TextWrapped = true
  828. Open.MouseButton1Down:connect(function()
  829.     Main.Visible = true
  830.     Open.Visible = false
  831. end)
  832. -- Scripts
  833. --AutoRob stuff--
  834. local DuffelBag = game:GetService("MarketplaceService"):PlayerOwnsAsset(plr, 2219040)
  835. local BankAutoRob = {
  836.     {
  837.         Pos = {51, 18.06, 856.5},
  838.         Yield = 2,
  839.         Status = "Starting the robbery"
  840.     },
  841.     {
  842.         Pos = {29.71, 0.73, 815.25},
  843.         Yield = 15,
  844.         Status = "Opening the vault"
  845.     },
  846.     {
  847.         Pos = {18.37, 0.7659, 822.25},
  848.         Yield = DuffelBag and 50 or 25,
  849.         Status = "Collecting $$$"
  850.     },
  851.     {
  852.         Pos = {10, 18, 784},
  853.         Status = "Finishing the robbery"
  854.     }
  855. }
  856.  
  857. local function Tp(...)
  858.     local char = plr.Character
  859.     for i=1,2 do
  860.         wait()
  861.         char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(...)
  862.     end
  863. end
  864.  
  865. function RobTheBank()
  866.     for _,v in pairs(BankAutoRob) do
  867.         Tp(unpack(v.Pos))
  868.         wait(v.Yield)
  869.     end
  870. end
  871.  
  872. --Bank notification--
  873. pcall(function()
  874.     local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  875.     local Info = Bank.Extra.Sign.Decal
  876.     Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  877.         if Info.Transparency ~= 0 then
  878.             BankStatus.Text = "Bank:Open"
  879.             BankStatus.TextColor3 = Color3.new(0,1,0)
  880.             BankAutoRobBtn.BackgroundColor3 = Color3.new(0,1,0)
  881.             local cb = Instance.new("BindableFunction")
  882.             cb.OnInvoke = function(arg)
  883.                 if arg == "Teleport" then
  884.                     JailbreakTp(10, 18, 784)
  885.                 elseif arg == "AutoRob" then
  886.                     RobTheBank()
  887.                 end
  888.             end
  889.             game:GetService("StarterGui"):SetCore("SendNotification",{
  890.                 Title = "Bank is ready!",
  891.                 Text = "Bank is ready!",
  892.                 Duration = 15,
  893.                 Button1 = "Dismiss",
  894.                 Button2 = (Vector3.new(Info.Parent.Position.X,0,Info.Parent.Position.Z) - Vector3.new(plr.Character.HumanoidRootPart.Position.X,0,plr.Character.HumanoidRootPart.Position.Z)).magnitude < 150 and "AutoRob" or "Teleport",
  895.                 Callback = cb
  896.             })
  897.         else
  898.             BankStatus.Text = "Bank:Closed"
  899.             BankStatus.TextColor3 = Color3.new(1,0,0)
  900.             BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
  901.         end
  902.     end)
  903.     BankStatus.Text = Info.Transparency == 0 and "Bank:Closed" or "Bank:Open"
  904.     BankStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  905.     BankAutoRobBtn.BackgroundColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  906. end)
  907. --Jewelry notification--
  908. pcall(function()
  909.     local Jewelry = workspace:FindFirstChild("Jewelrys"):GetChildren()[1]
  910.     local Info = Jewelry.Extra.Sign.Decal
  911.     Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  912.         if Info.Transparency ~= 0 then
  913.             JewelryStatus.Text = "Jewelry:Open"
  914.             JewelryStatus.TextColor3 = Color3.new(0,1,0)
  915.             BankStatus.TextColor3 = Color3.new(0,1,0)
  916.             local cb = Instance.new("BindableFunction")
  917.             cb.OnInvoke = function(arg)
  918.                 if arg == "Teleport" then
  919.                     JailbreakTp(142, 18, 1365)
  920.                 end
  921.             end
  922.             game:GetService("StarterGui"):SetCore("SendNotification",{
  923.                 Title = "Jewelry is ready!",
  924.                 Text = "Jewelry is ready!",
  925.                 Duration = 15,
  926.                 Button1 = "Dismiss",
  927.                 Button2 = "Teleport",
  928.                 Callback = cb
  929.             })
  930.         else
  931.             JewelryStatus.Text = "Jewelry:Closed"
  932.             JewelryStatus.TextColor3 = Color3.new(1,0,0)
  933.         end
  934.     end)
  935.     JewelryStatus.Text = Info.Transparency == 0 and "Jewelry:Closed" or "Jewelry:Open"
  936.     JewelryStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  937. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement