Advertisement
Guest User

ROBLOX Jailbreak Exploit GUI

a guest
Apr 19th, 2019
21,306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.64 KB | None | 0 0
  1. -- Objects
  2.  
  3. local MyJailbreakExploit = Instance.new("ScreenGui")
  4. local Main = Instance.new("Frame")
  5. local Top = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local Exit = Instance.new("TextButton")
  8. local WS = Instance.new("TextButton")
  9. local Bank = Instance.new("TextButton")
  10. local Jewelry = Instance.new("TextButton")
  11. local CrimBase = Instance.new("TextButton")
  12. local BTools = Instance.new("TextButton")
  13. local NoClip = Instance.new("TextButton")
  14. local Open = Instance.new("TextButton")
  15.  
  16. -- Properties
  17.  
  18. MyJailbreakExploit.Name = "My Jailbreak Exploit"
  19. MyJailbreakExploit.Parent = game.CoreGui
  20. MyJailbreakExploit.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. Main.Name = "Main"
  23. Main.Parent = MyJailbreakExploit
  24. Main.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  25. Main.Position = UDim2.new(0.227210894, 0, 0.250995994, 0)
  26. Main.Size = UDim2.new(0, 400, 0, 250)
  27. Main.Visible = false
  28. Main.Active = true
  29. Main.Draggable = true
  30.  
  31. Top.Name = "Top"
  32. Top.Parent = Main
  33. Top.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  34. Top.Position = UDim2.new(-0.000289154064, 0, 0, 0)
  35. Top.Size = UDim2.new(0, 400, 0, 49)
  36.  
  37. Title.Name = "Title"
  38. Title.Parent = Top
  39. Title.BackgroundColor3 = Color3.new(1, 0, 0)
  40. Title.Size = UDim2.new(0, 400, 0, 50)
  41. Title.Font = Enum.Font.SciFi
  42. Title.Text = "Jailbreak Exploit (Made by Drake)"
  43. Title.TextColor3 = Color3.new(0, 0, 0)
  44. Title.TextSize = 30
  45.  
  46. Exit.Name = "Exit"
  47. Exit.Parent = Top
  48. Exit.BackgroundColor3 = Color3.new(1, 0, 0)
  49. Exit.Position = UDim2.new(0.912500024, 0, 0, 0)
  50. Exit.Size = UDim2.new(0, 35, 0, 35)
  51. Exit.Font = Enum.Font.SciFi
  52. Exit.Text = "X"
  53. Exit.TextColor3 = Color3.new(0, 0, 0)
  54. Exit.TextScaled = true
  55. Exit.TextSize = 24
  56. Exit.MouseButton1Down:connect(function()
  57. Main.Visible = false
  58. Open.Visible = true
  59. end)
  60.  
  61. WS.Name = "WS"
  62. WS.Parent = Main
  63. WS.BackgroundColor3 = Color3.new(1, 0, 0)
  64. WS.Position = UDim2.new(0.0912075043, 0, 0.286278903, 0)
  65. WS.Size = UDim2.new(0, 131, 0, 35)
  66. WS.Font = Enum.Font.SciFi
  67. WS.Text = "Walkspeed {Press X]"
  68. WS.TextColor3 = Color3.new(0, 0, 0)
  69. WS.TextSize = 15
  70. WS.MouseButton1Down:connect(function()
  71. local walkspeedplayer = game:GetService("Players").LocalPlayer
  72. local walkspeedmouse = walkspeedplayer:GetMouse()
  73.  
  74. local walkspeedenabled = false
  75.  
  76. function x_walkspeed(key)
  77. if (key == "x") then
  78. if walkspeedenabled == false then
  79. _G.WS = 150;
  80. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  81. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  82. Humanoid.WalkSpeed = _G.WS;
  83. end)
  84. Humanoid.WalkSpeed = _G.WS;
  85.  
  86. walkspeedenabled = true
  87. elseif walkspeedenabled == true then
  88. _G.WS = 16;
  89. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  90. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  91. Humanoid.WalkSpeed = _G.WS;
  92. end)
  93. Humanoid.WalkSpeed = _G.WS;
  94.  
  95. walkspeedenabled = false
  96. end
  97. end
  98. end
  99.  
  100. walkspeedmouse.KeyDown:connect(x_walkspeed)
  101.  
  102. end)
  103.  
  104. Bank.Name = "Bank"
  105. Bank.Parent = Main
  106. Bank.BackgroundColor3 = Color3.new(1, 0, 0)
  107. Bank.Position = UDim2.new(0.0912075043, 0, 0.4902789, 0)
  108. Bank.Size = UDim2.new(0, 131, 0, 35)
  109. Bank.Font = Enum.Font.SciFi
  110. Bank.Text = "Bank"
  111. Bank.TextColor3 = Color3.new(0, 0, 0)
  112. Bank.TextScaled = true
  113. Bank.TextSize = 15
  114. Bank.TextWrapped = true
  115.  
  116. Jewelry.Name = "Jewelry"
  117. Jewelry.Parent = Main
  118. Jewelry.BackgroundColor3 = Color3.new(1, 0, 0)
  119. Jewelry.Position = UDim2.new(0.0912075043, 0, 0.702278912, 0)
  120. Jewelry.Size = UDim2.new(0, 131, 0, 35)
  121. Jewelry.Font = Enum.Font.SciFi
  122. Jewelry.Text = "Jewelry"
  123. Jewelry.TextColor3 = Color3.new(0, 0, 0)
  124. Jewelry.TextScaled = true
  125. Jewelry.TextSize = 15
  126. Jewelry.MouseButton1Down:connect(function()
  127. for i = 1,45 do
  128. wait(.08)
  129. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175)
  130. end
  131. end)
  132.  
  133. CrimBase.Name = "CrimBase"
  134. CrimBase.Parent = Main
  135. CrimBase.BackgroundColor3 = Color3.new(1, 0, 0)
  136. CrimBase.Position = UDim2.new(0.531207502, 0, 0.702278912, 0)
  137. CrimBase.Size = UDim2.new(0, 131, 0, 35)
  138. CrimBase.Font = Enum.Font.SciFi
  139. CrimBase.Text = "CrimBase"
  140. CrimBase.TextColor3 = Color3.new(0, 0, 0)
  141. CrimBase.TextScaled = true
  142. CrimBase.TextSize = 15
  143. CrimBase.MouseButton1Down:connect(function()
  144. for i = 1,45 do
  145. wait(.08)
  146. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 18, 1578.80261)
  147. end
  148. end)
  149.  
  150. BTools.Name = "BTools"
  151. BTools.Parent = Main
  152. BTools.BackgroundColor3 = Color3.new(1, 0, 0)
  153. BTools.Position = UDim2.new(0.528707504, 0, 0.286278903, 0)
  154. BTools.Size = UDim2.new(0, 131, 0, 35)
  155. BTools.Font = Enum.Font.SciFi
  156. BTools.Text = "BTools"
  157. BTools.TextColor3 = Color3.new(0, 0, 0)
  158. BTools.TextScaled = true
  159. BTools.TextSize = 15
  160. Bank.MouseButton1Down:connect(function()
  161. for i = 1,45 do
  162. wait(.08)
  163. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147)
  164. end
  165. end)
  166.  
  167. --btools
  168. BTools.MouseButton1Down:connect(function()
  169. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  170. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  171. if child.ClassName == "Part" then
  172. child.Locked = false
  173. end
  174. if child.ClassName == "MeshPart" then
  175. child.Locked = false
  176. end
  177. if child.ClassName == "UnionOperation" then
  178. child.Locked = false
  179. end
  180. if child.ClassName == "Model" then
  181. for index, chil in pairs(child:GetChildren()) do
  182. if chil.ClassName == "Part" then
  183. chil.Locked = false
  184. end
  185. if chil.ClassName == "MeshPart" then
  186. chil.Locked = false
  187. end
  188. if chil.ClassName == "UnionOperation" then
  189. chil.Locked = false
  190. end
  191. if chil.ClassName == "Model" then
  192. for index, childe in pairs(chil:GetChildren()) do
  193. if childe.ClassName == "Part" then
  194. childe.Locked = false
  195. end
  196. if childe.ClassName == "MeshPart" then
  197. childe.Locked = false
  198. end
  199. if childe.ClassName == "UnionOperation" then
  200. childe.Locked = false
  201. end
  202. if childe.ClassName == "Model" then
  203. for index, childeo in pairs(childe:GetChildren()) do
  204. if childeo.ClassName == "Part" then
  205. childeo.Locked = false
  206. end
  207. if childeo.ClassName == "MeshPart" then
  208. childeo.Locked = false
  209. end
  210. if childeo.ClassName == "UnionOperation" then
  211. childeo.Locked = false
  212. end
  213. if childeo.ClassName == "Model" then
  214. end
  215. end
  216. end
  217. end
  218. end
  219. end
  220. end
  221. end
  222. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  223. c.BinType = Enum.BinType.Hammer
  224. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  225. c.BinType = Enum.BinType.Clone
  226. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  227. c.BinType = Enum.BinType.Grab
  228. end)
  229.  
  230. NoClip.Name = "NoClip"
  231. NoClip.Parent = Main
  232. NoClip.BackgroundColor3 = Color3.new(1, 0, 0)
  233. NoClip.Position = UDim2.new(0.531207502, 0, 0.4902789, 0)
  234. NoClip.Size = UDim2.new(0, 131, 0, 35)
  235. NoClip.Font = Enum.Font.SciFi
  236. NoClip.Text = "NoClip"
  237. NoClip.TextColor3 = Color3.new(0, 0, 0)
  238. NoClip.TextScaled = true
  239. NoClip.TextSize = 15
  240. NoClip.MouseButton1Down:connect(function()
  241. game:GetService("Players").LocalPlayer.Character.RightHand.Touched:connect(function(obj)
  242. if obj ~= workspace.Terrain then
  243. obj.CanCollide = false
  244. wait(1)
  245. obj.CanCollide = true
  246. end
  247. end)
  248. end)
  249.  
  250. Open.Name = "Open"
  251. Open.Parent = MyJailbreakExploit
  252. Open.BackgroundColor3 = Color3.new(1, 0, 0)
  253. Open.Position = UDim2.new(0.409098625, 0, 0.930278897, 0)
  254. Open.Size = UDim2.new(0, 131, 0, 35)
  255. Open.Font = Enum.Font.SciFi
  256. Open.Text = "Open GUI"
  257. Open.TextColor3 = Color3.new(0, 0, 0)
  258. Open.TextScaled = true
  259. Open.TextSize = 15
  260. Open.MouseButton1Down:connect(function()
  261. Open.Visible = false
  262. Main.Visible = true
  263. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement