Guest User

Jailbreaker

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