Meliodas0_0

Jaildestroyer Gui

Jul 30th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.54 KB | None | 0 0
  1. -- Objects
  2. print("Made By KingEzz! Join the Discord : https://discord.gg/3zhAgks")
  3. local JailDestroyer = Instance.new("ScreenGui")
  4. local MainFrame = Instance.new("Frame")
  5. local TitleFrame = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local Icon = Instance.new("ImageLabel")
  8. local Credits = Instance.new("TextLabel")
  9. local ValueLabel = Instance.new("TextLabel")
  10. local FlashlightMode = Instance.new("TextButton")
  11. local MapESP = Instance.new("TextButton")
  12. local Walkspeed = Instance.new("TextButton")
  13. local NOclip = Instance.new("TextButton")
  14. local KillRingers = Instance.new("TextButton")
  15. local PickupCash = Instance.new("TextButton")
  16. local OpenEscapeRoutes = Instance.new("TextButton")
  17. local Gravity = Instance.new("TextButton")
  18. local RemoveCells = Instance.new("TextButton")
  19. local RemoveDoors = Instance.new("TextButton")
  20. local ValueBox = Instance.new("TextBox")
  21. local Open_Close = Instance.new("TextButton")
  22.  
  23. -- Properties
  24.  
  25. JailDestroyer.Name = "JailDestroyer"
  26. JailDestroyer.Parent = game.CoreGui
  27.  
  28. MainFrame.Name = "MainFrame"
  29. MainFrame.Parent = JailDestroyer
  30. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  31. MainFrame.BackgroundTransparency = 0.30000001192093
  32. MainFrame.BorderSizePixel = 10
  33. MainFrame.Position = UDim2.new(0.215365231, 0, 0.0415384695, 0)
  34. MainFrame.Size = UDim2.new(0, 452, 0, 407)
  35. local UserInputService = game:GetService("UserInputService")
  36.  
  37. local gui = MainFrame
  38.  
  39. local dragging
  40. local dragInput
  41. local dragStart
  42. local startPos
  43.  
  44. local function update(input)
  45. local delta = input.Position - dragStart
  46. gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  47. end
  48.  
  49. gui.InputBegan:Connect(function(input)
  50. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  51. dragging = true
  52. dragStart = input.Position
  53. startPos = gui.Position
  54.  
  55. input.Changed:Connect(function()
  56. if input.UserInputState == Enum.UserInputState.End then
  57. dragging = false
  58. end
  59. end)
  60. end
  61. end)
  62.  
  63. gui.InputChanged:Connect(function(input)
  64. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  65. dragInput = input
  66. end
  67. end)
  68.  
  69. UserInputService.InputChanged:Connect(function(input)
  70. if input == dragInput and dragging then
  71. update(input)
  72. end
  73. end)
  74. ---
  75.  
  76. TitleFrame.Name = "TitleFrame"
  77. TitleFrame.Parent = MainFrame
  78. TitleFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  79. TitleFrame.BackgroundTransparency = 0.5
  80. TitleFrame.BorderSizePixel = 3
  81. TitleFrame.Size = UDim2.new(0, 452, 0, 76)
  82.  
  83. Title.Name = "Title"
  84. Title.Parent = TitleFrame
  85. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  86. Title.BackgroundTransparency = 1
  87. Title.BorderSizePixel = 0
  88. Title.Position = UDim2.new(0.134955749, 0, 0.171052665, 0)
  89. Title.Size = UDim2.new(0, 385, 0, 50)
  90. Title.Font = Enum.Font.Fantasy
  91. Title.Text = "JailDestroyer"
  92. Title.TextColor3 = Color3.new(0, 0, 0)
  93. Title.TextScaled = true
  94. Title.TextSize = 14
  95. Title.TextWrapped = true
  96.  
  97. Icon.Name = "Icon"
  98. Icon.Parent = TitleFrame
  99. Icon.BackgroundColor3 = Color3.new(1, 1, 1)
  100. Icon.BackgroundTransparency = 1
  101. Icon.BorderSizePixel = 0
  102. Icon.Size = UDim2.new(0, 93, 0, 76)
  103. Icon.Image = "rbxassetid://2095234098"
  104.  
  105. Credits.Name = "Credits"
  106. Credits.Parent = MainFrame
  107. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  108. Credits.BackgroundTransparency = 1
  109. Credits.BorderSizePixel = 0
  110. Credits.Position = UDim2.new(0, 0, 0.93857491, 0)
  111. Credits.Size = UDim2.new(0, 452, 0, 25)
  112. Credits.Font = Enum.Font.Fantasy
  113. Credits.Text = "Made By: Vrien Studios || KingEzz Discord: 3zhAgks"
  114. Credits.TextColor3 = Color3.new(0, 0, 0)
  115. Credits.TextScaled = true
  116. Credits.TextSize = 14
  117. Credits.TextWrapped = true
  118.  
  119. ValueLabel.Name = "ValueLabel"
  120. ValueLabel.Parent = MainFrame
  121. ValueLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  122. ValueLabel.BackgroundTransparency = 1
  123. ValueLabel.BorderSizePixel = 0
  124. ValueLabel.Position = UDim2.new(0.0265486836, 0, 0.217171714, 0)
  125. ValueLabel.Size = UDim2.new(0, 99, 0, 32)
  126. ValueLabel.Font = Enum.Font.SourceSans
  127. ValueLabel.Text = "VALUE:"
  128. ValueLabel.TextColor3 = Color3.new(0, 0, 0)
  129. ValueLabel.TextScaled = true
  130. ValueLabel.TextSize = 14
  131. ValueLabel.TextWrapped = true
  132.  
  133. FlashlightMode.Name = "FlashlightMode"
  134. FlashlightMode.Parent = MainFrame
  135. FlashlightMode.BackgroundColor3 = Color3.new(1, 1, 1)
  136. FlashlightMode.BorderSizePixel = 3
  137. FlashlightMode.Position = UDim2.new(0.35840708, 0, 0.801187456, 0)
  138. FlashlightMode.Size = UDim2.new(0, 127, 0, 50)
  139. FlashlightMode.Font = Enum.Font.Highway
  140. FlashlightMode.Text = "Flashlight Mode"
  141. FlashlightMode.TextColor3 = Color3.new(0, 0, 0)
  142. FlashlightMode.TextSize = 20
  143. FlashlightMode.TextWrapped = true
  144. FlashlightMode.MouseButton1Click:connect(function()
  145. m = game:GetService("Players").LocalPlayer.Character
  146. Instance.new("PointLight", m.Head)
  147. Instance.new("PointLight", m.UpperTorso)
  148. end)
  149.  
  150. MapESP.Name = "MapESP"
  151. MapESP.Parent = MainFrame
  152. MapESP.BackgroundColor3 = Color3.new(1, 1, 1)
  153. MapESP.BorderSizePixel = 3
  154. MapESP.Position = UDim2.new(0.674778759, 0, 0.493106693, 0)
  155. MapESP.Size = UDim2.new(0, 127, 0, 50)
  156. MapESP.Font = Enum.Font.Highway
  157. MapESP.Text = "Map ESP"
  158. MapESP.TextColor3 = Color3.new(0, 0, 0)
  159. MapESP.TextSize = 20
  160. MapESP.TextWrapped = true
  161. MapESP.MouseButton1Click:connect(function()
  162. while true do
  163. wait(0.1)
  164. for index, User in pairs(game:GetService("Players").LocalPlayer.PlayerGui.MainGui.Minimap.Players:GetChildren()) do
  165. User.BorderSizePixel = 6
  166. User.Visible = true
  167. User.BorderColor3 = User.BackgroundColor3
  168. end
  169. print("DONE")
  170. end
  171. end)
  172.  
  173. Walkspeed.Name = "Walkspeed"
  174. Walkspeed.Parent = MainFrame
  175. Walkspeed.BackgroundColor3 = Color3.new(1, 1, 1)
  176. Walkspeed.BorderSizePixel = 3
  177. Walkspeed.Position = UDim2.new(0.674778759, 0, 0.331490546, 0)
  178. Walkspeed.Size = UDim2.new(0, 127, 0, 50)
  179. Walkspeed.Font = Enum.Font.Highway
  180. Walkspeed.Text = "Walkspeed [V]"
  181. Walkspeed.TextColor3 = Color3.new(0, 0, 0)
  182. Walkspeed.TextSize = 20
  183. Walkspeed.TextWrapped = true
  184. Walkspeed.MouseButton1Click:connect(function()
  185. if changed == false then
  186. game:GetService("Players").LocalPlayer.Character.Humanoid.Name = ("Bypass")
  187. game:GetService("Players").LocalPlayer.Character.Bypass.WalkSpeed = ValueBox.Text
  188. changed = true
  189. else
  190. game:GetService("Players").LocalPlayer.Character.Bypass.WalkSpeed = ValueBox.Text
  191. end
  192. end)
  193. changed = false
  194. NOclip.Name = "NOclip"
  195. NOclip.Parent = MainFrame
  196. NOclip.BackgroundColor3 = Color3.new(1, 1, 1)
  197. NOclip.BorderSizePixel = 3
  198. NOclip.Position = UDim2.new(0.35840708, 0, 0.649672329, 0)
  199. NOclip.Size = UDim2.new(0, 127, 0, 50)
  200. NOclip.Font = Enum.Font.Highway
  201. NOclip.Text = "Noclip"
  202. NOclip.TextColor3 = Color3.new(0, 0, 0)
  203. NOclip.TextSize = 20
  204. NOclip.TextWrapped = true
  205. NOclip.MouseButton1Click:connect(function()
  206. if changed == true then
  207. wait(1)
  208. game:GetService("Players").LocalPlayer.Character.Bypass:Remove()
  209. wait(1)
  210. Instance.new("Humanoid", game:GetService("Players").LocalPlayer.Character)
  211. else
  212. wait(1)
  213. game:GetService("Players").LocalPlayer.Character.Humanoid:Remove()
  214. wait(1)
  215. Instance.new("Humanoid", game:GetService("Players").LocalPlayer.Character)
  216. end
  217. end)
  218.  
  219. KillRingers.Name = "Kill Ringers"
  220. KillRingers.Parent = MainFrame
  221. KillRingers.BackgroundColor3 = Color3.new(1, 1, 1)
  222. KillRingers.BorderSizePixel = 3
  223. KillRingers.Position = UDim2.new(0.35840708, 0, 0.493106693, 0)
  224. KillRingers.Size = UDim2.new(0, 127, 0, 50)
  225. KillRingers.Font = Enum.Font.Highway
  226. KillRingers.Text = "Kill Ringers"
  227. KillRingers.TextColor3 = Color3.new(0, 0, 0)
  228. KillRingers.TextSize = 20
  229. KillRingers.TextWrapped = true
  230. KillRingers.MouseButton1Click:connect(function()
  231. workspace.Ringers:Remove()
  232. end)
  233.  
  234. PickupCash.Name = "PickupCash"
  235. PickupCash.Parent = MainFrame
  236. PickupCash.BackgroundColor3 = Color3.new(1, 1, 1)
  237. PickupCash.BorderSizePixel = 3
  238. PickupCash.Position = UDim2.new(0.35840708, 0, 0.331490517, 0)
  239. PickupCash.Size = UDim2.new(0, 127, 0, 50)
  240. PickupCash.Font = Enum.Font.Highway
  241. PickupCash.Text = "Pickup Cash"
  242. PickupCash.TextColor3 = Color3.new(0, 0, 0)
  243. PickupCash.TextSize = 20
  244. PickupCash.TextWrapped = true
  245. PickupCash.MouseButton1Click:connect(function()
  246. -- workspace.DroppedCash.Cash.BoundingBox.CFrame = workspace.moneymarkschool3.UpperTorso.CFrame
  247. for index, Cash in pairs(workspace.DroppedCash:GetChildren()) do
  248. Cash.BoundingBox.CFrame = game:GetService("Players").LocalPlayer.Character.UpperTorso.CFrame
  249. end
  250. end)
  251.  
  252. OpenEscapeRoutes.Name = "OpenEscapeRoutes"
  253. OpenEscapeRoutes.Parent = MainFrame
  254. OpenEscapeRoutes.BackgroundColor3 = Color3.new(1, 1, 1)
  255. OpenEscapeRoutes.BorderSizePixel = 3
  256. OpenEscapeRoutes.Position = UDim2.new(0.0265486725, 0, 0.801187456, 0)
  257. OpenEscapeRoutes.Size = UDim2.new(0, 127, 0, 50)
  258. OpenEscapeRoutes.Font = Enum.Font.Highway
  259. OpenEscapeRoutes.Text = "Open Escape Routes"
  260. OpenEscapeRoutes.TextColor3 = Color3.new(0, 0, 0)
  261. OpenEscapeRoutes.TextSize = 20
  262. OpenEscapeRoutes.TextWrapped = true
  263. OpenEscapeRoutes.MouseButton1Click:connect(function()
  264. workspace.EscapeRoutes:Remove()
  265. end)
  266.  
  267. Gravity.Name = "Gravity"
  268. Gravity.Parent = MainFrame
  269. Gravity.BackgroundColor3 = Color3.new(1, 1, 1)
  270. Gravity.BorderSizePixel = 3
  271. Gravity.Position = UDim2.new(0.0265486725, 0, 0.649672329, 0)
  272. Gravity.Size = UDim2.new(0, 127, 0, 50)
  273. Gravity.Font = Enum.Font.Highway
  274. Gravity.Text = "Gravity [V]"
  275. Gravity.TextColor3 = Color3.new(0, 0, 0)
  276. Gravity.TextSize = 20
  277. Gravity.TextWrapped = true
  278. Gravity.MouseButton1Click:connect(function()
  279. workspace.Gravity = ValueBox.Text
  280. end)
  281.  
  282. RemoveCells.Name = "RemoveCells"
  283. RemoveCells.Parent = MainFrame
  284. RemoveCells.BackgroundColor3 = Color3.new(1, 1, 1)
  285. RemoveCells.BorderSizePixel = 3
  286. RemoveCells.Position = UDim2.new(0.0265486725, 0, 0.493106693, 0)
  287. RemoveCells.Size = UDim2.new(0, 127, 0, 50)
  288. RemoveCells.Font = Enum.Font.Highway
  289. RemoveCells.Text = "Remove Cells"
  290. RemoveCells.TextColor3 = Color3.new(0, 0, 0)
  291. RemoveCells.TextSize = 20
  292. RemoveCells.TextWrapped = true
  293. RemoveCells.MouseButton1Click:connect(function()
  294. workspace.Cells:Remove()
  295. end)
  296.  
  297. RemoveDoors.Name = "RemoveDoors"
  298. RemoveDoors.Parent = MainFrame
  299. RemoveDoors.BackgroundColor3 = Color3.new(1, 1, 1)
  300. RemoveDoors.BorderSizePixel = 3
  301. RemoveDoors.Position = UDim2.new(0.0265486725, 0, 0.331490606, 0)
  302. RemoveDoors.Size = UDim2.new(0, 127, 0, 50)
  303. RemoveDoors.Font = Enum.Font.Highway
  304. RemoveDoors.Text = "Remove Doors"
  305. RemoveDoors.TextColor3 = Color3.new(0, 0, 0)
  306. RemoveDoors.TextSize = 20
  307. RemoveDoors.TextWrapped = true
  308. RemoveDoors.MouseButton1Click:connect(function()
  309. workspace.Doors:Remove()
  310. end)
  311.  
  312. ValueBox.Name = "ValueBox"
  313. ValueBox.Parent = MainFrame
  314. ValueBox.BackgroundColor3 = Color3.new(1, 1, 1)
  315. ValueBox.BorderSizePixel = 3
  316. ValueBox.Position = UDim2.new(0.269911498, 0, 0.22850123, 0)
  317. ValueBox.Size = UDim2.new(0, 297, 0, 23)
  318. ValueBox.Font = Enum.Font.SourceSans
  319. ValueBox.Text = ""
  320. ValueBox.TextColor3 = Color3.new(0, 0, 0)
  321. ValueBox.TextSize = 14
  322.  
  323. Status = "OPEN"
  324. Open_Close.Name = "Open_Close"
  325. Open_Close.Parent = JailDestroyer
  326. Open_Close.BackgroundColor3 = Color3.new(1, 1, 1)
  327. Open_Close.BorderSizePixel = 3
  328. Open_Close.Position = UDim2.new(0.0214105789, 0, 0.898461521, 0)
  329. Open_Close.Size = UDim2.new(0, 130, 0, 28)
  330. Open_Close.Font = Enum.Font.Highway
  331. Open_Close.Text = "CLOSE"
  332. Open_Close.TextColor3 = Color3.new(0, 0, 0)
  333. Open_Close.TextSize = 14
  334. Open_Close.MouseButton1Click:connect(function()
  335. if Status == "OPEN" then
  336. MainFrame.Visible = false
  337. Open_Close.Text = "OPEN"
  338. Status = "CLOSE"
  339. else
  340. MainFrame.Visible = true
  341. Open_Close.Text = "CLOSE"
  342. Status = "OPEN"
  343. end
  344. end)
Add Comment
Please, Sign In to add comment