Advertisement
Guest User

.

a guest
Jul 17th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.47 KB | None | 0 0
  1. -- Objects
  2.  
  3. local JailbreakGUI = Instance.new("ScreenGui")
  4. local MainGUI = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local InfAmmo = Instance.new("TextButton")
  7. local InfNitro = Instance.new("TextButton")
  8. local WS = Instance.new("TextButton")
  9. local God = Instance.new("TextButton")
  10. local NoClip = Instance.new("TextButton")
  11. local BTools = Instance.new("TextButton")
  12. local Donut = Instance.new("TextButton")
  13. local Gas = Instance.new("TextButton")
  14. local Bank = Instance.new("TextButton")
  15. local Train = Instance.new("TextButton")
  16. local Jewelry = Instance.new("TextButton")
  17. local CrimBase = Instance.new("TextButton")
  18. local Prison = Instance.new("TextButton")
  19. local Key = Instance.new("TextButton")
  20. local SpamArrest = Instance.new("TextButton")
  21. local RemoveAll = Instance.new("TextButton")
  22. local TextLabel_2 = Instance.new("TextLabel")
  23. local Open = Instance.new("TextButton")
  24. local Close = Instance.new("TextButton")
  25.  
  26. -- Properties
  27.  
  28. JailbreakGUI.Name = "JailbreakGUI"
  29. JailbreakGUI.Parent = game.CoreGui
  30.  
  31. MainGUI.Name = "MainGUI"
  32. MainGUI.Parent = JailbreakGUI
  33. MainGUI.BackgroundColor3 = Color3.new(0.862745, 0.0666667, 0.172549)
  34. MainGUI.BorderSizePixel = 5
  35. MainGUI.Position = UDim2.new(0.113250285, 0, 0.395348847, 0)
  36. MainGUI.Size = UDim2.new(0, 706, 0, 358)
  37. MainGUI.Visible = false
  38. MainGUI.Draggable = true
  39.  
  40. TextLabel.Parent = MainGUI
  41. TextLabel.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  42. TextLabel.BorderSizePixel = 5
  43. TextLabel.Position = UDim2.new(0, 0, -0.19273743, 0)
  44. TextLabel.Size = UDim2.new(0, 706, 0, 50)
  45. TextLabel.Font = Enum.Font.SciFi
  46. TextLabel.Text = "Project Break"
  47. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  48. TextLabel.TextSize = 50
  49.  
  50. InfAmmo.Name = "Inf.Ammo"
  51. InfAmmo.Parent = MainGUI
  52. InfAmmo.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  53. InfAmmo.Position = UDim2.new(0.0140449433, 0, 0.310055882, 0)
  54. InfAmmo.Size = UDim2.new(0, 177, 0, 36)
  55. InfAmmo.Font = Enum.Font.SourceSans
  56. InfAmmo.Text = "Infinite Ammo"
  57. InfAmmo.TextColor3 = Color3.new(0, 0, 0)
  58. InfAmmo.TextSize = 25
  59. InfAmmo.MouseButton1Down:connect(function()
  60. game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Ammo.Current:Destroy()
  61. end)
  62.  
  63. InfNitro.Name = "Inf.Nitro"
  64. InfNitro.Parent = MainGUI
  65. InfNitro.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  66. InfNitro.Position = UDim2.new(0.0140449433, 0, 0.432960927, 0)
  67. InfNitro.Size = UDim2.new(0, 177, 0, 36)
  68. InfNitro.Font = Enum.Font.SourceSans
  69. InfNitro.Text = "Infinite Nitro"
  70. InfNitro.TextColor3 = Color3.new(0, 0, 0)
  71. InfNitro.TextSize = 25
  72. InfNitro.MouseButton1Down:connect(function()
  73. game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "69696969"
  74. game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
  75. end)
  76.  
  77. WS.Name = "WS"
  78. WS.Parent = MainGUI
  79. WS.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  80. WS.Position = UDim2.new(0.0140449433, 0, 0.561452508, 0)
  81. WS.Size = UDim2.new(0, 177, 0, 36)
  82. WS.Font = Enum.Font.SourceSans
  83. WS.Text = "Toggle Speed (X)"
  84. WS.TextColor3 = Color3.new(0, 0, 0)
  85. WS.TextSize = 25
  86. WS.MouseButton1Down:connect(function()
  87. local walkspeedplayer = game:GetService("Players").LocalPlayer
  88. local walkspeedmouse = walkspeedplayer:GetMouse()
  89.  
  90. local walkspeedenabled = false
  91.  
  92. function x_walkspeed(key)
  93. if (key == "x") then
  94. if walkspeedenabled == false then
  95. _G.WS = 200;
  96. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  97. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  98. Humanoid.WalkSpeed = _G.WS;
  99. end)
  100. Humanoid.WalkSpeed = _G.WS;
  101.  
  102. walkspeedenabled = true
  103. elseif walkspeedenabled == true then
  104. _G.WS = 20;
  105. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  106. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  107. Humanoid.WalkSpeed = _G.WS;
  108. end)
  109. Humanoid.WalkSpeed = _G.WS;
  110.  
  111. walkspeedenabled = false
  112. end
  113. end
  114. end
  115.  
  116. walkspeedmouse.KeyDown:connect(x_walkspeed)
  117.  
  118. end)
  119.  
  120. God.Name = "God"
  121. God.Parent = MainGUI
  122. God.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  123. God.Position = UDim2.new(0.0140449433, 0, 0.69273746, 0)
  124. God.Size = UDim2.new(0, 177, 0, 36)
  125. God.Font = Enum.Font.SourceSans
  126. God.Text = "Godmode"
  127. God.TextColor3 = Color3.new(0, 0, 0)
  128. God.TextSize = 25
  129. God.MouseButton1Down:connect(function()
  130. game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
  131. local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
  132. l.Parent = game:GetService("Players").LocalPlayer.Character
  133. l.Name = "Humanoid"
  134. wait(0.1)
  135. game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
  136. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
  137. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
  138. wait(0.1)
  139. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
  140. game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  141. end)
  142.  
  143. NoClip.Name = "NoClip"
  144. NoClip.Parent = MainGUI
  145. NoClip.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  146. NoClip.Position = UDim2.new(0.538124263, 0, 0.19273743, 0)
  147. NoClip.Size = UDim2.new(0, 177, 0, 36)
  148. NoClip.Font = Enum.Font.SourceSans
  149. NoClip.Text = "NoClip (E)"
  150. NoClip.TextColor3 = Color3.new(0, 0, 0)
  151. NoClip.TextSize = 25
  152. NoClip.MouseButton1Down:connect(function()
  153. local noclipplayer = game:GetService("Players").LocalPlayer
  154. local noclipmouse = noclipplayer:GetMouse()
  155.  
  156. local donoclip = false
  157. local noclip = false
  158.  
  159. function b_noclip(key)
  160. if (key == "e") then
  161. if noclip == false then
  162. donoclip = true
  163.  
  164. noclip = true
  165. elseif noclip == true then
  166. donoclip = false
  167.  
  168. noclip = false
  169. end
  170. end
  171. end
  172.  
  173. noclipmouse.KeyDown:connect(b_noclip)
  174.  
  175. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  176. if obj ~= workspace.Terrain then
  177. if donoclip == true then
  178. obj.CanCollide = false
  179. else
  180. obj.CanCollide = true
  181. end
  182. end
  183. end)
  184. end)
  185.  
  186. BTools.Name = "BTools"
  187. BTools.Parent = MainGUI
  188. BTools.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  189. BTools.Position = UDim2.new(0.0146337822, 0, 0.824022353, 0)
  190. BTools.Size = UDim2.new(0, 177, 0, 36)
  191. BTools.Font = Enum.Font.SourceSans
  192. BTools.Text = "B-Tools"
  193. BTools.TextColor3 = Color3.new(0, 0, 0)
  194. BTools.TextSize = 25
  195. BTools.MouseButton1Down:connect(function()
  196. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  197. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  198. if child.ClassName == "Part" then
  199. child.Locked = false
  200. end
  201. if child.ClassName == "MeshPart" then
  202. child.Locked = false
  203. end
  204. if child.ClassName == "UnionOperation" then
  205. child.Locked = false
  206. end
  207. if child.ClassName == "Model" then
  208. for index, chil in pairs(child:GetChildren()) do
  209. if chil.ClassName == "Part" then
  210. chil.Locked = false
  211. end
  212. if chil.ClassName == "MeshPart" then
  213. chil.Locked = false
  214. end
  215. if chil.ClassName == "UnionOperation" then
  216. chil.Locked = false
  217. end
  218. if chil.ClassName == "Model" then
  219. for index, childe in pairs(chil:GetChildren()) do
  220. if childe.ClassName == "Part" then
  221. childe.Locked = false
  222. end
  223. if childe.ClassName == "MeshPart" then
  224. childe.Locked = false
  225. end
  226. if childe.ClassName == "UnionOperation" then
  227. childe.Locked = false
  228. end
  229. if childe.ClassName == "Model" then
  230. for index, childeo in pairs(childe:GetChildren()) do
  231. if childeo.ClassName == "Part" then
  232. childeo.Locked = false
  233. end
  234. if childeo.ClassName == "MeshPart" then
  235. childeo.Locked = false
  236. end
  237. if childeo.ClassName == "UnionOperation" then
  238. childeo.Locked = false
  239. end
  240. if childeo.ClassName == "Model" then
  241. end
  242. end
  243. end
  244. end
  245. end
  246. end
  247. end
  248. end
  249. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  250. c.BinType = Enum.BinType.Hammer
  251. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  252. c.BinType = Enum.BinType.Clone
  253. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  254. c.BinType = Enum.BinType.Grab
  255. end)
  256.  
  257. Donut.Name = "Donut"
  258. Donut.Parent = MainGUI
  259. Donut.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  260. Donut.Position = UDim2.new(0.278089881, 0, 0.310055882, 0)
  261. Donut.Size = UDim2.new(0, 177, 0, 36)
  262. Donut.Font = Enum.Font.SourceSans
  263. Donut.Text = "Donut Shop"
  264. Donut.TextColor3 = Color3.new(0, 0, 0)
  265. Donut.TextSize = 25
  266. Donut.MouseButton1Down:connect(function()
  267. for i = 1,45 do
  268. wait(.08)
  269. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(257.191101, 17.81828869, -1753.11206)
  270. end
  271. end)
  272.  
  273. Gas.Name = "Gas"
  274. Gas.Parent = MainGUI
  275. Gas.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  276. Gas.Position = UDim2.new(0.278089851, 0, 0.432960927, 0)
  277. Gas.Size = UDim2.new(0, 177, 0, 36)
  278. Gas.Font = Enum.Font.SourceSans
  279. Gas.Text = "Gas Station"
  280. Gas.TextColor3 = Color3.new(0, 0, 0)
  281. Gas.TextSize = 25
  282. Gas.MouseButton1Down:connect(function()
  283. for i = 1,45 do
  284. wait(.08)
  285. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1586.41101, 17.8481865, 709.37262)
  286. end
  287. end)
  288.  
  289. Bank.Name = "Bank"
  290. Bank.Parent = MainGUI
  291. Bank.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  292. Bank.Position = UDim2.new(0.278089851, 0, 0.561452568, 0)
  293. Bank.Size = UDim2.new(0, 177, 0, 36)
  294. Bank.Font = Enum.Font.SourceSans
  295. Bank.Text = "Bank"
  296. Bank.TextColor3 = Color3.new(0, 0, 0)
  297. Bank.TextSize = 25
  298. Bank.MouseButton1Down:connect(function()
  299. for i = 1,45 do
  300. wait(.08)
  301. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147)
  302. end
  303. end)
  304.  
  305. Train.Name = "Train"
  306. Train.Parent = MainGUI
  307. Train.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  308. Train.Position = UDim2.new(0.278089851, 0, 0.69273746, 0)
  309. Train.Size = UDim2.new(0, 177, 0, 36)
  310. Train.Font = Enum.Font.SourceSans
  311. Train.Text = "Train"
  312. Train.TextColor3 = Color3.new(0, 0, 0)
  313. Train.TextSize = 25
  314. Train.MouseButton1Down:connect(function()
  315. for i = 1,45 do
  316. wait(.08)
  317. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1954.95007, 68.0448606, -603.844116)
  318. end
  319. end)
  320.  
  321. Jewelry.Name = "Jewelry"
  322. Jewelry.Parent = MainGUI
  323. Jewelry.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  324. Jewelry.Position = UDim2.new(0.278089851, 0, 0.824022412, 0)
  325. Jewelry.Size = UDim2.new(0, 177, 0, 36)
  326. Jewelry.Font = Enum.Font.SourceSans
  327. Jewelry.Text = "Jewelry Store"
  328. Jewelry.TextColor3 = Color3.new(0, 0, 0)
  329. Jewelry.TextSize = 25
  330. Jewelry.MouseButton1Down:connect(function()
  331. for i = 1,45 do
  332. wait(.08)
  333. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(133.300705, 17.9375954, 1316.42407)
  334. end
  335. end)
  336.  
  337. CrimBase.Name = "CrimBase"
  338. CrimBase.Parent = MainGUI
  339. CrimBase.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  340. CrimBase.Position = UDim2.new(0.278089881, 0, 0.19273752, 0)
  341. CrimBase.Size = UDim2.new(0, 177, 0, 36)
  342. CrimBase.Font = Enum.Font.SourceSans
  343. CrimBase.Text = "Criminal Base"
  344. CrimBase.TextColor3 = Color3.new(0, 0, 0)
  345. CrimBase.TextSize = 25
  346. CrimBase.MouseButton1Down:connect(function()
  347. for i = 1,45 do
  348. wait(.08)
  349. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261)
  350. end
  351. end)
  352.  
  353. Prison.Name = "Prison"
  354. Prison.Parent = MainGUI
  355. Prison.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  356. Prison.Position = UDim2.new(0.278089881, 0, 0.0726257712, 0)
  357. Prison.Size = UDim2.new(0, 177, 0, 36)
  358. Prison.Font = Enum.Font.SourceSans
  359. Prison.Text = "Prison"
  360. Prison.TextColor3 = Color3.new(0, 0, 0)
  361. Prison.TextSize = 25
  362. Prison.MouseButton1Click:Connect(function()
  363. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1220, 18, -1761)
  364. end)
  365.  
  366. Key.Name = "Key"
  367. Key.Parent = MainGUI
  368. Key.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  369. Key.Position = UDim2.new(0.538713098, 0, 0.310055941, 0)
  370. Key.Size = UDim2.new(0, 177, 0, 36)
  371. Key.Font = Enum.Font.SourceSans
  372. Key.Text = "Spoof Keycard"
  373. Key.TextColor3 = Color3.new(0, 0, 0)
  374. Key.TextSize = 25
  375. Key.MouseButton1Click:Connect(function()
  376. game.Players.LocalPlayer.TeamValue.Value= "Police"
  377.  
  378. end)
  379.  
  380. SpamArrest.Name = "SpamArrest"
  381. SpamArrest.Parent = MainGUI
  382. SpamArrest.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  383. SpamArrest.Position = UDim2.new(0.538713098, 0, 0.0726257786, 0)
  384. SpamArrest.Size = UDim2.new(0, 177, 0, 36)
  385. SpamArrest.Font = Enum.Font.SourceSans
  386. SpamArrest.Text = "Auto Arrest"
  387. SpamArrest.TextColor3 = Color3.new(0, 0, 0)
  388. SpamArrest.TextSize = 25
  389. SpamArrest.MouseButton1Down:connect(function()
  390. local Player = game.Players.LocalPlayer
  391. wait(0.5)
  392. for i,v in pairs(game.Teams.Criminal:GetPlayers()) do
  393. repeat
  394. wait()
  395. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  396. until v.Team.Name ~= "Criminal"
  397. end
  398. end)
  399.  
  400. TextLabel_2.Parent = MainGUI
  401. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  402. TextLabel_2.BackgroundTransparency = 1
  403. TextLabel_2.BorderSizePixel = 0
  404. TextLabel_2.Position = UDim2.new(0.0694050938, 0, 0.0335195549, 0)
  405. TextLabel_2.Size = UDim2.new(0, 98, 0, 99)
  406. TextLabel_2.Font = Enum.Font.SciFi
  407. TextLabel_2.Text = "By Syntax"
  408. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  409. TextLabel_2.TextSize = 40
  410.  
  411. Open.Name = "Open"
  412. Open.Parent = JailbreakGUI
  413. Open.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  414. Open.BorderSizePixel = 4
  415. Open.Position = UDim2.new(0.493421078, 0, 0, 0)
  416. Open.Size = UDim2.new(0, 68, 0, 31)
  417. Open.Font = Enum.Font.SourceSans
  418. Open.Text = "Open"
  419. Open.TextColor3 = Color3.new(0, 0, 0)
  420. Open.TextSize = 25
  421. Open.MouseButton1Down:connect(function()
  422. MainGUI.Visible = true
  423. Open.Visible = false
  424. Close.Visible = true
  425. end)
  426.  
  427. Close.Name = "Close"
  428. Close.Parent = JailbreakGUI
  429. Close.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  430. Close.BorderSizePixel = 4
  431. Close.Position = UDim2.new(0.493421078, 0, 0, 0)
  432. Close.Size = UDim2.new(0, 71, 0, 31)
  433. Close.Font = Enum.Font.SourceSans
  434. Close.Visible = false
  435. Close.Text = "Close"
  436. Close.TextColor3 = Color3.new(0, 0, 0)
  437. Close.TextSize = 25
  438. Close.MouseButton1Down:connect(function()
  439. MainGUI.Visible = false
  440. Open.Visible = true
  441. Close.Visible = false
  442. end)
  443.  
  444. RemoveAll.Name = "Remove All"
  445. RemoveAll.Parent = MainGUI
  446. RemoveAll.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  447. RemoveAll.Position = UDim2.new(0.538713098, 0, 0.432960987, 0)
  448. RemoveAll.Size = UDim2.new(0, 177, 0, 36)
  449. RemoveAll.Font = Enum.Font.SourceSans
  450. RemoveAll.Text = "Remove All"
  451. RemoveAll.TextColor3 = Color3.new(0, 0, 0)
  452. RemoveAll.TextSize = 25
  453. RemoveAll.MouseButton1Down:connect(function()
  454. local jewelry = game:GetService("Workspace").Jewelrys:GetChildren()
  455.  
  456. for i = 1,4 do
  457. local xd = jewelry[1].Model.BarbedWire
  458. xd:Destroy()
  459. end
  460. end)
  461.  
  462. RemoveAll.MouseButton1Down:connect(function()
  463. game.Workspace.Doors:Destroy()
  464. end)
  465. RemoveAll.MouseButton1Down:connect(function()
  466. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  467. banklasers[1].Door.Model:Destroy()
  468. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement