Advertisement
gesrhtewntwaenta

Untitled

Sep 11th, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.58 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 TextLabel_2 = Instance.new("TextLabel")
  22. local Open = Instance.new("TextButton")
  23. local Close = Instance.new("TextButton")
  24.  
  25. -- Properties
  26.  
  27. JailbreakGUI.Name = "JailbreakGUI"
  28. JailbreakGUI.Parent = game.CoreGui
  29.  
  30. MainGUI.Name = "MainGUI"
  31. MainGUI.Parent = JailbreakGUI
  32. MainGUI.BackgroundColor3 = Color3.new(0.862745, 0.0666667, 0.172549)
  33. MainGUI.BorderSizePixel = 5
  34. MainGUI.Position = UDim2.new(0.113250285, 0, 0.395348847, 0)
  35. MainGUI.Size = UDim2.new(0, 706, 0, 358)
  36. MainGUI.Visible = false
  37. MainGUI.Draggable = True
  38.  
  39. TextLabel.Parent = MainGUI
  40. TextLabel.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  41. TextLabel.BorderSizePixel = 5
  42. TextLabel.Position = UDim2.new(0, 0, -0.19273743, 0)
  43. TextLabel.Size = UDim2.new(0, 706, 0, 50)
  44. TextLabel.Font = Enum.Font.SciFi
  45. TextLabel.Text = "Project Break"
  46. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  47. TextLabel.TextSize = 50
  48.  
  49. InfAmmo.Name = "Inf.Ammo"
  50. InfAmmo.Parent = MainGUI
  51. InfAmmo.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  52. InfAmmo.Position = UDim2.new(0.0140449433, 0, 0.304469287, 0)
  53. InfAmmo.Size = UDim2.new(0, 177, 0, 36)
  54. InfAmmo.Font = Enum.Font.SourceSans
  55. InfAmmo.Text = "Infinite Ammo"
  56. InfAmmo.TextColor3 = Color3.new(0, 0, 0)
  57. InfAmmo.TextSize = 25
  58. InfAmmo.MouseButton1Down:connect(function()
  59. game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Ammo.Current:Destroy()
  60. end)
  61.  
  62. InfNitro.Name = "Inf.Nitro"
  63. InfNitro.Parent = MainGUI
  64. InfNitro.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  65. InfNitro.Position = UDim2.new(0.0140449433, 0, 0.432960927, 0)
  66. InfNitro.Size = UDim2.new(0, 177, 0, 36)
  67. InfNitro.Font = Enum.Font.SourceSans
  68. InfNitro.Text = "Infinite Nitro"
  69. InfNitro.TextColor3 = Color3.new(0, 0, 0)
  70. InfNitro.TextSize = 25
  71. InfNitro.MouseButton1Down:connect(function()
  72. game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "69696969"
  73. game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
  74. end)
  75.  
  76. WS.Name = "WS"
  77. WS.Parent = MainGUI
  78. WS.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  79. WS.Position = UDim2.new(0.0140449433, 0, 0.561452508, 0)
  80. WS.Size = UDim2.new(0, 177, 0, 36)
  81. WS.Font = Enum.Font.SourceSans
  82. WS.Text = "Toggle Speed (X)"
  83. WS.TextColor3 = Color3.new(0, 0, 0)
  84. WS.TextSize = 25
  85. WS.MouseButton1Down:connect(function()
  86. local walkspeedplayer = game:GetService("Players").LocalPlayer
  87. local walkspeedmouse = walkspeedplayer:GetMouse()
  88.  
  89. local walkspeedenabled = false
  90.  
  91. function x_walkspeed(key)
  92. if (key == "x") then
  93. if walkspeedenabled == false then
  94. _G.WS = 200;
  95. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  96. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  97. Humanoid.WalkSpeed = _G.WS;
  98. end)
  99. Humanoid.WalkSpeed = _G.WS;
  100.  
  101. walkspeedenabled = true
  102. elseif walkspeedenabled == true then
  103. _G.WS = 20;
  104. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  105. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  106. Humanoid.WalkSpeed = _G.WS;
  107. end)
  108. Humanoid.WalkSpeed = _G.WS;
  109.  
  110. walkspeedenabled = false
  111. end
  112. end
  113. end
  114.  
  115. walkspeedmouse.KeyDown:connect(x_walkspeed)
  116.  
  117. end)
  118.  
  119. God.Name = "God"
  120. God.Parent = MainGUI
  121. God.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  122. God.Position = UDim2.new(0.0140449433, 0, 0.69273746, 0)
  123. God.Size = UDim2.new(0, 177, 0, 36)
  124. God.Font = Enum.Font.SourceSans
  125. God.Text = "Godmode"
  126. God.TextColor3 = Color3.new(0, 0, 0)
  127. God.TextSize = 25
  128. God.MouseButton1Down:connect(function()
  129. game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
  130. local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
  131. l.Parent = game:GetService("Players").LocalPlayer.Character
  132. l.Name = "Humanoid"
  133. wait(0.1)
  134. game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
  135. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
  136. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
  137. wait(0.1)
  138. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
  139. game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  140. end)
  141.  
  142. NoClip.Name = "NoClip"
  143. NoClip.Parent = MainGUI
  144. NoClip.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  145. NoClip.Position = UDim2.new(0.538124263, 0, 0.561452508, 0)
  146. NoClip.Size = UDim2.new(0, 177, 0, 36)
  147. NoClip.Font = Enum.Font.SourceSans
  148. NoClip.Text = "NoClip (E)"
  149. NoClip.TextColor3 = Color3.new(0, 0, 0)
  150. NoClip.TextSize = 25
  151. NoClip.MouseButton1Down:connect(function()
  152. local noclipplayer = game:GetService("Players").LocalPlayer
  153. local noclipmouse = noclipplayer:GetMouse()
  154.  
  155. local donoclip = false
  156. local noclip = false
  157.  
  158. function b_noclip(key)
  159. if (key == "e") then
  160. if noclip == false then
  161. donoclip = true
  162.  
  163. noclip = true
  164. elseif noclip == true then
  165. donoclip = false
  166.  
  167. noclip = false
  168. end
  169. end
  170. end
  171.  
  172. noclipmouse.KeyDown:connect(b_noclip)
  173.  
  174. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  175. if obj ~= workspace.Terrain then
  176. if donoclip == true then
  177. obj.CanCollide = false
  178. else
  179. obj.CanCollide = true
  180. end
  181. end
  182. end)
  183. end)
  184.  
  185.  
  186. BTools.Name = "BTools"
  187. BTools.Parent = MainGUI
  188. BTools.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  189. BTools.Position = UDim2.new(0.278089881, 0, 0.181564271, 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.304469287, 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.540129542, 0, 0.181564331, 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.540129542, 0, 0.304469347, 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.540129542, 0, 0.432960957, 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.432960987, 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.  
  401. TextLabel_2.Parent = MainGUI
  402. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  403. TextLabel_2.BackgroundTransparency = 1
  404. TextLabel_2.BorderSizePixel = 0
  405. TextLabel_2.Position = UDim2.new(0.0694050789, 0, 0.153631285, 0)
  406. TextLabel_2.Size = UDim2.new(0, 98, 0, 50)
  407. TextLabel_2.Font = Enum.Font.SciFi
  408. TextLabel_2.Text = "By Syntax"
  409. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  410. TextLabel_2.TextSize = 40
  411.  
  412. Open.Name = "Open"
  413. Open.Parent = JailbreakGUI
  414. Open.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  415. Open.Position = UDim2.new(0.409607798, 0, -0.000593841076, 0)
  416. Open.Size = UDim2.new(0, 177, 0, 36)
  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.Position = UDim2.new(0.410450965, 0, 0.0592068285, 0)
  431. Close.Size = UDim2.new(0, 177, 0, 36)
  432. Close.Font = Enum.Font.SourceSans
  433. Close.Text = "Close"
  434. Close.TextColor3 = Color3.new(0, 0, 0)
  435. Close.TextSize = 25
  436. Close.MouseButton1Down:connect(function()
  437. MainGUI.Visible = false
  438. Open.Visible = true
  439. Close.Visible = false
  440. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement