Advertisement
Guest User

Untitled

a guest
Nov 19th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.85 KB | None | 0 0
  1. --Press "T" To Open And Close GUI!
  2.  
  3. -- Objects
  4. local JailThatGUI = Instance.new("ScreenGui")
  5. local MainFrame = Instance.new("Frame")
  6.  
  7. -- Properties
  8.  
  9. JailThatGUI.Name = "JailThatGUI"
  10. JailThatGUI.Parent = game.CoreGui
  11.  
  12. MainFrame.Name = "MainFrame"
  13. MainFrame.Parent = JailThatGUI
  14. MainFrame.Active = true
  15. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  16. MainFrame.BorderColor3 = Color3.new(0, 0, 0)
  17. MainFrame.Draggable = true
  18. MainFrame.Position = UDim2.new(0, 380, 0, 120)
  19. MainFrame.Size = UDim2.new(0, 465, 0, 410)
  20. MainFrame.BackgroundTransparency = 0.7
  21. MainFrame.Visible = true
  22.  
  23. local AutoArrest = Instance.new('TextButton', Body)
  24. AutoArrest.Name = 'AutoArrest'
  25. AutoArrest.Parent = MainFrame
  26. AutoArrest.Active = true
  27. AutoArrest.BackgroundColor3 = Color3.new(255/0/0)
  28. AutoArrest.BackgroundTransparency = 0
  29. AutoArrest.BorderSizePixel = 5
  30. AutoArrest.Position = UDim2.new(0,39,0,47)
  31. AutoArrest.Size = UDim2.new(0,120,0,20)
  32. AutoArrest.Font = 'SourceSansBold'
  33. AutoArrest.FontSize = 'Size24'
  34. AutoArrest.Text = 'AutoArrest'
  35. AutoArrest.TextColor3 = Color3.new(255,255,255)
  36. AutoArrest.TextWrapped = true
  37. AutoArrest.BorderColor3 = Color3.new(0/0/0/0)
  38. AutoArrest.TextStrokeTransparency = 1
  39. AutoArrest.MouseButton1Click:connect(function()
  40. while wait() do
  41. while wait(0.1) do
  42. localRootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  43. event = game.ReplicatedStorage.Resource.Event
  44.  
  45. function getCFrameBehindPart(part)
  46. local partRotation = part.CFrame:toAxisAngle()
  47. local bottomOfPart = part.CFrame.p-Vector3.new(0,part.Size.Y/2,0)
  48. local behindPart = CFrame.new(bottomOfPart-part.CFrame.lookVector*1.2)+Vector3.new(0,1,0)
  49. return behindPart*CFrame.Angles(partRotation.X,partRotation.Y,partRotation.Z)
  50. end
  51.  
  52. for _,plr in pairs(game.Teams.Criminal:GetPlayers()) do
  53. local char = plr.Character
  54. if char ~= nil and char:FindFirstChild("HumanoidRootPart") ~= nil then
  55. local rootPart = char.HumanoidRootPart
  56. repeat
  57. event:FireServer("VehicleExit")
  58. localRootPart.CFrame = getCFrameBehindPart(rootPart)
  59. wait()
  60. for _,veh in pairs(game.Workspace.Vehicles:GetChildren()) do
  61. event:FireServer("AttemptVehicleEject",veh)
  62. end
  63. event:FireServer("AttemptArrest", plr.Name)
  64. until plr.Team.Name ~= "Criminal" or rootPart == nil
  65. end
  66. end
  67. end
  68. end
  69. end)
  70.  
  71. local BankVault = Instance.new('TextButton', Body)
  72. BankVault.Name = 'BankVault'
  73. BankVault.Parent = MainFrame
  74. BankVault.Active = true
  75. BankVault.BackgroundColor3 = Color3.new(255/0/0)
  76. BankVault.BackgroundTransparency = 0
  77. BankVault.BorderSizePixel = 5
  78. BankVault.Position = UDim2.new(0,39,0,80)
  79. BankVault.Size = UDim2.new(0,120,0,20)
  80. BankVault.Font = 'SourceSansBold'
  81. BankVault.FontSize = 'Size24'
  82. BankVault.Text = 'BankVault'
  83. BankVault.TextColor3 = Color3.new(255,255,255)
  84. BankVault.TextWrapped = true
  85. BankVault.BorderColor3 = Color3.new(0/0/0/0)
  86. BankVault.TextStrokeTransparency = 1
  87. BankVault.MouseButton1Click:connect(function()
  88. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(33.3059082,-1.67172456,803.200806) + Vector3.new(1,0,0)
  89. end)
  90.  
  91. local CriminalBase = Instance.new('TextButton', Body)
  92. CriminalBase.Name = 'CriminalBase'
  93. CriminalBase.Parent = MainFrame
  94. CriminalBase.Active = true
  95. CriminalBase.BackgroundColor3 = Color3.new(255/0/0)
  96. CriminalBase.BackgroundTransparency = 0
  97. CriminalBase.BorderSizePixel = 5
  98. CriminalBase.Position = UDim2.new(0,39,0,113)
  99. CriminalBase.Size = UDim2.new(0,120,0,20)
  100. CriminalBase.Font = 'SourceSansBold'
  101. CriminalBase.FontSize = 'Size24'
  102. CriminalBase.Text = 'CrimBase'
  103. CriminalBase.TextColor3 = Color3.new(255,255,255)
  104. CriminalBase.TextWrapped = true
  105. CriminalBase.BorderColor3 = Color3.new(0/0/0/0)
  106. CriminalBase.TextStrokeTransparency = 1
  107. CriminalBase.MouseButton1Click:connect(function()
  108. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
  109. end)
  110.  
  111. local Batcave = Instance.new('TextButton', Body)
  112. Batcave.Name = 'Batcave'
  113. Batcave.Parent = MainFrame
  114. Batcave.Active = true
  115. Batcave.BackgroundColor3 = Color3.new(255/0/0)
  116. Batcave.BackgroundTransparency = 0
  117. Batcave.BorderSizePixel = 5
  118. Batcave.Position = UDim2.new(0,39,0,146)
  119. Batcave.Size = UDim2.new(0,120,0,20)
  120. Batcave.Font = 'SourceSansBold'
  121. Batcave.FontSize = 'Size24'
  122. Batcave.Text = 'Batcave'
  123. Batcave.TextColor3 = Color3.new(255,255,255)
  124. Batcave.TextWrapped = true
  125. Batcave.BorderColor3 = Color3.new(0/0/0/0)
  126. Batcave.TextStrokeTransparency = 1
  127. Batcave.MouseButton1Click:connect(function()
  128. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1818, 49, -1657.4) + Vector3.new(1,0,0)
  129. end)
  130.  
  131. local Garage = Instance.new('TextButton', Body)
  132. Garage.Name = 'Garage'
  133. Garage.Parent = MainFrame
  134. Garage.Active = true
  135. Garage.BackgroundColor3 = Color3.new(255/0/0)
  136. Garage.BackgroundTransparency = 0
  137. Garage.BorderSizePixel = 5
  138. Garage.Position = UDim2.new(0,39,0,179)
  139. Garage.Size = UDim2.new(0,120,0,20)
  140. Garage.Font = 'SourceSansBold'
  141. Garage.FontSize = 'Size24'
  142. Garage.Text = 'Garage'
  143. Garage.TextColor3 = Color3.new(255,255,255)
  144. Garage.TextWrapped = true
  145. Garage.BorderColor3 = Color3.new(0/0/0/0)
  146. Garage.TextStrokeTransparency = 1
  147. Garage.MouseButton1Click:connect(function()
  148. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-342.130798, 19.3135223, 1182.73669) + Vector3.new(1,0,0)
  149. end)
  150.  
  151. local PoliceCars = Instance.new('TextButton', Body)
  152. PoliceCars.Name = 'PoliceCars'
  153. PoliceCars.Parent = MainFrame
  154. PoliceCars.Active = true
  155. PoliceCars.BackgroundColor3 = Color3.new(255/0/0)
  156. PoliceCars.BackgroundTransparency = 0
  157. PoliceCars.BorderSizePixel = 5
  158. PoliceCars.Position = UDim2.new(0,39,0,212)
  159. PoliceCars.Size = UDim2.new(0,120,0,20)
  160. PoliceCars.Font = 'SourceSansBold'
  161. PoliceCars.FontSize = 'Size24'
  162. PoliceCars.Text = 'PoliceCars'
  163. PoliceCars.TextColor3 = Color3.new(255,255,255)
  164. PoliceCars.TextWrapped = true
  165. PoliceCars.BorderColor3 = Color3.new(0/0/0/0)
  166. PoliceCars.TextStrokeTransparency = 1
  167. PoliceCars.MouseButton1Click:connect(function()
  168. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1100.4469, 17.7500038, -1493.18286) + Vector3.new(1,0,0)
  169. end)
  170.  
  171. local PoliceBase = Instance.new('TextButton', Body)
  172. PoliceBase.Name = 'PoliceBase'
  173. PoliceBase.Parent = MainFrame
  174. PoliceBase.Active = true
  175. PoliceBase.BackgroundColor3 = Color3.new(255/0/0)
  176. PoliceBase.BackgroundTransparency = 0
  177. PoliceBase.BorderSizePixel = 5
  178. PoliceBase.Position = UDim2.new(0,39,0,245)
  179. PoliceBase.Size = UDim2.new(0,120,0,20)
  180. PoliceBase.Font = 'SourceSansBold'
  181. PoliceBase.FontSize = 'Size24'
  182. PoliceBase.Text = 'PoliceBase'
  183. PoliceBase.TextColor3 = Color3.new(255,255,255)
  184. PoliceBase.TextWrapped = true
  185. PoliceBase.BorderColor3 = Color3.new(0/0/0/0)
  186. PoliceBase.TextStrokeTransparency = 1
  187. PoliceBase.MouseButton1Click:connect(function()
  188. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1130.11426, 17.950058, -1593.09766) + Vector3.new(1,0,0)
  189. end)
  190.  
  191. local Helicopter1 = Instance.new('TextButton', Body)
  192. Helicopter1.Name = 'Helicopter1'
  193. Helicopter1.Parent = MainFrame
  194. Helicopter1.Active = true
  195. Helicopter1.BackgroundColor3 = Color3.new(255/0/0)
  196. Helicopter1.BackgroundTransparency = 0
  197. Helicopter1.BorderSizePixel = 5
  198. Helicopter1.Position = UDim2.new(0,39,0,278)
  199. Helicopter1.Size = UDim2.new(0,120,0,20)
  200. Helicopter1.Font = 'SourceSansBold'
  201. Helicopter1.FontSize = 'Size24'
  202. Helicopter1.Text = 'Helicopter1'
  203. Helicopter1.TextColor3 = Color3.new(255,255,255)
  204. Helicopter1.TextWrapped = true
  205. Helicopter1.BorderColor3 = Color3.new(0/0/0/0)
  206. Helicopter1.TextStrokeTransparency = 1
  207. Helicopter1.MouseButton1Click:connect(function()
  208. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1176.4231, 59.7911148, -1572.6908) + Vector3.new(1,0,0)
  209. end)
  210.  
  211. local Helicopter2 = Instance.new('TextButton', Body)
  212. Helicopter2.Name = 'Helicopter2'
  213. Helicopter2.Parent = MainFrame
  214. Helicopter2.Active = true
  215. Helicopter2.BackgroundColor3 = Color3.new(255/0/0)
  216. Helicopter2.BackgroundTransparency = 0
  217. Helicopter2.BorderSizePixel = 5
  218. Helicopter2.Position = UDim2.new(0,39,0,311)
  219. Helicopter2.Size = UDim2.new(0,120,0,20)
  220. Helicopter2.Font = 'SourceSansBold'
  221. Helicopter2.FontSize = 'Size24'
  222. Helicopter2.Text = 'Helicopter2'
  223. Helicopter2.TextColor3 = Color3.new(255,255,255)
  224. Helicopter2.TextWrapped = true
  225. Helicopter2.BorderColor3 = Color3.new(0/0/0/0)
  226. Helicopter2.TextStrokeTransparency = 1
  227. Helicopter2.MouseButton1Click:connect(function()
  228. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(725.516174, 68.436058, 1143.79065) + Vector3.new(1,0,0)
  229. end)
  230.  
  231. local Bank = Instance.new('TextButton', Body)
  232. Bank.Name = 'Bank'
  233. Bank.Parent = MainFrame
  234. Bank.Active = true
  235. Bank.BackgroundColor3 = Color3.new(255/0/0)
  236. Bank.BackgroundTransparency = 0
  237. Bank.BorderSizePixel = 5
  238. Bank.Position = UDim2.new(0,39,0,344)
  239. Bank.Size = UDim2.new(0,120,0,20)
  240. Bank.Font = 'SourceSansBold'
  241. Bank.FontSize = 'Size24'
  242. Bank.Text = 'Bank'
  243. Bank.TextColor3 = Color3.new(255,255,255)
  244. Bank.TextWrapped = true
  245. Bank.BorderColor3 = Color3.new(0/0/0/0)
  246. Bank.TextStrokeTransparency = 1
  247. Bank.MouseButton1Click:connect(function()
  248. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147) + Vector3.new(1,0,0)
  249. end)
  250.  
  251. local JewleryTop = Instance.new('TextButton', Body)
  252. JewleryTop.Name = 'JewleryTop'
  253. JewleryTop.Parent = MainFrame
  254. JewleryTop.Active = true
  255. JewleryTop.BackgroundColor3 = Color3.new(255/0/0)
  256. JewleryTop.BackgroundTransparency = 0
  257. JewleryTop.BorderSizePixel = 5
  258. JewleryTop.Position = UDim2.new(0,39,0,377)
  259. JewleryTop.Size = UDim2.new(0,120,0,20)
  260. JewleryTop.Font = 'SourceSansBold'
  261. JewleryTop.FontSize = 'Size24'
  262. JewleryTop.Text = 'JewleryTop'
  263. JewleryTop.TextColor3 = Color3.new(255,255,255)
  264. JewleryTop.TextWrapped = true
  265. JewleryTop.BorderColor3 = Color3.new(0/0/0/0)
  266. JewleryTop.TextStrokeTransparency = 1
  267. JewleryTop.MouseButton1Click:connect(function()
  268. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175) + Vector3.new(1,0,0)
  269. end)
  270.  
  271. local Buggy = Instance.new('TextButton', Body)
  272. Buggy.Name = 'Buggy'
  273. Buggy.Parent = MainFrame
  274. Buggy.Active = true
  275. Buggy.BackgroundColor3 = Color3.new(255/0/0)
  276. Buggy.BackgroundTransparency = 0
  277. Buggy.BorderSizePixel = 5
  278. Buggy.Position = UDim2.new(0,177,0,47)
  279. Buggy.Size = UDim2.new(0,120,0,20)
  280. Buggy.Font = 'SourceSansBold'
  281. Buggy.FontSize = 'Size24'
  282. Buggy.Text = 'Buggy'
  283. Buggy.TextColor3 = Color3.new(255,255,255)
  284. Buggy.TextWrapped = true
  285. Buggy.BorderColor3 = Color3.new(0/0/0/0)
  286. Buggy.TextStrokeTransparency = 1
  287. Buggy.MouseButton1Click:connect(function()
  288. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(571.526733, 16.66436, -470.50943) + Vector3.new(1,0,0)
  289. end)
  290.  
  291. local Porsche = Instance.new('TextButton', Body)
  292. Porsche.Name = 'Porsche'
  293. Porsche.Parent = MainFrame
  294. Porsche.Active = true
  295. Porsche.BackgroundColor3 = Color3.new(255/0/0)
  296. Porsche.BackgroundTransparency = 0
  297. Porsche.BorderSizePixel = 5
  298. Porsche.Position = UDim2.new(0,177,0,80)
  299. Porsche.Size = UDim2.new(0,120,0,20)
  300. Porsche.Font = 'SourceSansBold'
  301. Porsche.FontSize = 'Size24'
  302. Porsche.Text = 'Porsche'
  303. Porsche.TextColor3 = Color3.new(255,255,255)
  304. Porsche.TextWrapped = true
  305. Porsche.BorderColor3 = Color3.new(0/0/0/0)
  306. Porsche.TextStrokeTransparency = 1
  307. Porsche.MouseButton1Click:connect(function()
  308. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1112.11475, 101.16069, 1290.57654) + Vector3.new(1,0,0)
  309. end)
  310.  
  311. local DirtBike = Instance.new('TextButton', Body)
  312. DirtBike.Name = 'DirtBike'
  313. DirtBike.Parent = MainFrame
  314. DirtBike.Active = true
  315. DirtBike.BackgroundColor3 = Color3.new(255/0/0)
  316. DirtBike.BackgroundTransparency = 0
  317. DirtBike.BorderSizePixel = 5
  318. DirtBike.Position = UDim2.new(0,177,0,113)
  319. DirtBike.Size = UDim2.new(0,120,0,20)
  320. DirtBike.Font = 'SourceSansBold'
  321. DirtBike.FontSize = 'Size24'
  322. DirtBike.Text = 'DirtBike'
  323. DirtBike.TextColor3 = Color3.new(255,255,255)
  324. DirtBike.TextWrapped = true
  325. DirtBike.BorderColor3 = Color3.new(0/0/0/0)
  326. DirtBike.TextStrokeTransparency = 1
  327. DirtBike.MouseButton1Click:connect(function()
  328. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1313.71118, 17.3656254, 370.085327) + Vector3.new(1,0,0)
  329. end)
  330.  
  331. local SwatCar = Instance.new('TextButton', Body)
  332. SwatCar.Name = 'SwatCar'
  333. SwatCar.Parent = MainFrame
  334. SwatCar.Active = true
  335. SwatCar.BackgroundColor3 = Color3.new(255/0/0)
  336. SwatCar.BackgroundTransparency = 0
  337. SwatCar.BorderSizePixel = 5
  338. SwatCar.Position = UDim2.new(0,177,0,146)
  339. SwatCar.Size = UDim2.new(0,120,0,20)
  340. SwatCar.Font = 'SourceSansBold'
  341. SwatCar.FontSize = 'Size24'
  342. SwatCar.Text = 'SwatCar'
  343. SwatCar.TextColor3 = Color3.new(255,255,255)
  344. SwatCar.TextWrapped = true
  345. SwatCar.BorderColor3 = Color3.new(0/0/0/0)
  346. SwatCar.TextStrokeTransparency = 1
  347. SwatCar.MouseButton1Click:connect(function()
  348. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1355.2417, 18, -1531.86047) + Vector3.new(1,0,0)
  349. end)
  350.  
  351. local Lambo = Instance.new('TextButton', Body)
  352. Lambo.Name = 'Lambo'
  353. Lambo.Parent = MainFrame
  354. Lambo.Active = true
  355. Lambo.BackgroundColor3 = Color3.new(255/0/0)
  356. Lambo.BackgroundTransparency = 0
  357. Lambo.BorderSizePixel = 5
  358. Lambo.Position = UDim2.new(0,177,0,179)
  359. Lambo.Size = UDim2.new(0,120,0,20)
  360. Lambo.Font = 'SourceSansBold'
  361. Lambo.FontSize = 'Size24'
  362. Lambo.Text = 'Lambo'
  363. Lambo.TextColor3 = Color3.new(255,255,255)
  364. Lambo.TextWrapped = true
  365. Lambo.BorderColor3 = Color3.new(0/0/0/0)
  366. Lambo.TextStrokeTransparency = 1
  367. Lambo.MouseButton1Click:connect(function()
  368. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(144.794067, 17.6189003, 768.572693) + Vector3.new(1,0,0)
  369. end)
  370.  
  371. local Buggatti = Instance.new('TextButton', Body)
  372. Buggatti.Name = 'Buggatti'
  373. Buggatti.Parent = MainFrame
  374. Buggatti.Active = true
  375. Buggatti.BackgroundColor3 = Color3.new(255/0/0)
  376. Buggatti.BackgroundTransparency = 0
  377. Buggatti.BorderSizePixel = 5
  378. Buggatti.Position = UDim2.new(0,177,0,212)
  379. Buggatti.Size = UDim2.new(0,120,0,20)
  380. Buggatti.Font = 'SourceSansBold'
  381. Buggatti.FontSize = 'Size24'
  382. Buggatti.Text = 'Bugatti'
  383. Buggatti.TextColor3 = Color3.new(255,255,255)
  384. Buggatti.TextWrapped = true
  385. Buggatti.BorderColor3 = Color3.new(0/0/0/0)
  386. Buggatti.TextStrokeTransparency = 1
  387. Buggatti.MouseButton1Click:connect(function()
  388. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(245.938766, 17.6064777, 1372.15076) + Vector3.new(1,0,0)
  389. end)
  390.  
  391. local MiniCooper = Instance.new('TextButton', Body)
  392. MiniCooper.Name = 'MiniCooper'
  393. MiniCooper.Parent = MainFrame
  394. MiniCooper.Active = true
  395. MiniCooper.BackgroundColor3 = Color3.new(255/0/0)
  396. MiniCooper.BackgroundTransparency = 0
  397. MiniCooper.BorderSizePixel = 5
  398. MiniCooper.Position = UDim2.new(0,177,0,245)
  399. MiniCooper.Size = UDim2.new(0,120,0,20)
  400. MiniCooper.Font = 'SourceSansBold'
  401. MiniCooper.FontSize = 'Size24'
  402. MiniCooper.Text = 'MiniCooper'
  403. MiniCooper.TextColor3 = Color3.new(255,255,255)
  404. MiniCooper.TextWrapped = true
  405. MiniCooper.BorderColor3 = Color3.new(0/0/0/0)
  406. MiniCooper.TextStrokeTransparency = 1
  407. MiniCooper.MouseButton1Click:connect(function()
  408. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(767.823242, 17.3656254, -1216.83643) + Vector3.new(1,0,0)
  409. end)
  410.  
  411. local Tesla3 = Instance.new('TextButton', Body)
  412. Tesla3.Name = 'Tesla3'
  413. Tesla3.Parent = MainFrame
  414. Tesla3.Active = true
  415. Tesla3.BackgroundColor3 = Color3.new(255/0/0)
  416. Tesla3.BackgroundTransparency = 0
  417. Tesla3.BorderSizePixel = 5
  418. Tesla3.Position = UDim2.new(0,177,0,278)
  419. Tesla3.Size = UDim2.new(0,120,0,20)
  420. Tesla3.Font = 'SourceSansBold'
  421. Tesla3.FontSize = 'Size24'
  422. Tesla3.Text = 'Tesla3'
  423. Tesla3.TextColor3 = Color3.new(255,255,255)
  424. Tesla3.TextWrapped = true
  425. Tesla3.BorderColor3 = Color3.new(0/0/0/0)
  426. Tesla3.TextStrokeTransparency = 1
  427. Tesla3.MouseButton1Click:connect(function()
  428. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-111.571999, 17.6169529, 541.515747) + Vector3.new(1,0,0)
  429. end)
  430.  
  431. local PickupTruck = Instance.new('TextButton', Body)
  432. PickupTruck.Name = 'PickupTruck'
  433. PickupTruck.Parent = MainFrame
  434. PickupTruck.Active = true
  435. PickupTruck.BackgroundColor3 = Color3.new(255/0/0)
  436. PickupTruck.BackgroundTransparency = 0
  437. PickupTruck.BorderSizePixel = 5
  438. PickupTruck.Position = UDim2.new(0,177,0,311)
  439. PickupTruck.Size = UDim2.new(0,120,0,20)
  440. PickupTruck.Font = 'SourceSansBold'
  441. PickupTruck.FontSize = 'Size24'
  442. PickupTruck.Text = 'PickupTruk'
  443. PickupTruck.TextColor3 = Color3.new(255,255,255)
  444. PickupTruck.TextWrapped = true
  445. PickupTruck.BorderColor3 = Color3.new(0/0/0/0)
  446. PickupTruck.TextStrokeTransparency = 1
  447. PickupTruck.MouseButton1Click:connect(function()
  448. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1541.10388, 17.746624, 729) + Vector3.new(1,0,0)
  449. end)
  450.  
  451. local DonutShop = Instance.new('TextButton', Body)
  452. DonutShop.Name = 'DonutShop'
  453. DonutShop.Parent = MainFrame
  454. DonutShop.Active = true
  455. DonutShop.BackgroundColor3 = Color3.new(255/0/0)
  456. DonutShop.BackgroundTransparency = 0
  457. DonutShop.BorderSizePixel = 5
  458. DonutShop.Position = UDim2.new(0,177,0,344)
  459. DonutShop.Size = UDim2.new(0,120,0,20)
  460. DonutShop.Font = 'SourceSansBold'
  461. DonutShop.FontSize = 'Size24'
  462. DonutShop.Text = 'DonutShop'
  463. DonutShop.TextColor3 = Color3.new(255,255,255)
  464. DonutShop.TextWrapped = true
  465. DonutShop.BorderColor3 = Color3.new(0/0/0/0)
  466. DonutShop.TextStrokeTransparency = 1
  467. DonutShop.MouseButton1Click:connect(function()
  468. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(273, 18, -1807) + Vector3.new(1,0,0)
  469. end)
  470.  
  471. local DonutShop = Instance.new('TextButton', Body)
  472. DonutShop.Name = 'DonutShop'
  473. DonutShop.Parent = MainFrame
  474. DonutShop.Active = true
  475. DonutShop.BackgroundColor3 = Color3.new(255/0/0)
  476. DonutShop.BackgroundTransparency = 0
  477. DonutShop.BorderSizePixel = 5
  478. DonutShop.Position = UDim2.new(0,177,0,344)
  479. DonutShop.Size = UDim2.new(0,120,0,20)
  480. DonutShop.Font = 'SourceSansBold'
  481. DonutShop.FontSize = 'Size24'
  482. DonutShop.Text = 'DonutShop'
  483. DonutShop.TextColor3 = Color3.new(255,255,255)
  484. DonutShop.TextWrapped = true
  485. DonutShop.BorderColor3 = Color3.new(0/0/0/0)
  486. DonutShop.TextStrokeTransparency = 1
  487. DonutShop.MouseButton1Click:connect(function()
  488. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(273, 18, -1807) + Vector3.new(1,0,0)
  489. end)
  490.  
  491. local JewleryStr = Instance.new('TextButton', Body)
  492. JewleryStr.Name = 'JewleryStr'
  493. JewleryStr.Parent = MainFrame
  494. JewleryStr.Active = true
  495. JewleryStr.BackgroundColor3 = Color3.new(255/0/0)
  496. JewleryStr.BackgroundTransparency = 0
  497. JewleryStr.BorderSizePixel = 5
  498. JewleryStr.Position = UDim2.new(0,177,0,377)
  499. JewleryStr.Size = UDim2.new(0,120,0,20)
  500. JewleryStr.Font = 'SourceSansBold'
  501. JewleryStr.FontSize = 'Size24'
  502. JewleryStr.Text = 'JewleryStr'
  503. JewleryStr.TextColor3 = Color3.new(255,255,255)
  504. JewleryStr.TextWrapped = true
  505. JewleryStr.BorderColor3 = Color3.new(0/0/0/0)
  506. JewleryStr.TextStrokeTransparency = 1
  507. JewleryStr.MouseButton1Click:connect(function()
  508. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(141.502686, 17.8576393, 1343.16345) + Vector3.new(1,0,0)
  509. end)
  510.  
  511. local GunStore = Instance.new('TextButton', Body)
  512. GunStore.Name = 'GunStore'
  513. GunStore.Parent = MainFrame
  514. GunStore.Active = true
  515. GunStore.BackgroundColor3 = Color3.new(255/0/0)
  516. GunStore.BackgroundTransparency = 0
  517. GunStore.BorderSizePixel = 5
  518. GunStore.Position = UDim2.new(0,315,0,47)
  519. GunStore.Size = UDim2.new(0,120,0,20)
  520. GunStore.Font = 'SourceSansBold'
  521. GunStore.FontSize = 'Size24'
  522. GunStore.Text = 'GunStore'
  523. GunStore.TextColor3 = Color3.new(255,255,255)
  524. GunStore.TextWrapped = true
  525. GunStore.BorderColor3 = Color3.new(0/0/0/0)
  526. GunStore.TextStrokeTransparency = 1
  527. GunStore.MouseButton1Click:connect(function()
  528. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-24.4, 18, -1763) + Vector3.new(1,0,0)
  529. end)
  530.  
  531. local Noclipp = Instance.new('TextButton', Body)
  532. Noclipp.Name = 'Noclipp'
  533. Noclipp.Parent = MainFrame
  534. Noclipp.Active = true
  535. Noclipp.BackgroundColor3 = Color3.new(255/0/0)
  536. Noclipp.BackgroundTransparency = 0
  537. Noclipp.BorderSizePixel = 5
  538. Noclipp.Position = UDim2.new(0,315,0,80)
  539. Noclipp.Size = UDim2.new(0,120,0,20)
  540. Noclipp.Font = 'SourceSansBold'
  541. Noclipp.FontSize = 'Size24'
  542. Noclipp.Text = 'Noclip(N)'
  543. Noclipp.TextColor3 = Color3.new(255,255,255)
  544. Noclipp.TextWrapped = true
  545. Noclipp.BorderColor3 = Color3.new(0/0/0/0)
  546. Noclipp.TextStrokeTransparency = 1
  547.  
  548. noclip = false
  549. game:GetService('RunService').Stepped:connect(function()
  550. if noclip then
  551. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  552. end
  553. end)
  554.  
  555. Noclipp.MouseButton1Click:connect(function()
  556. noclip = not noclip
  557. if Noclipp.Text == "Noclip(N)" then
  558. Noclipp.Text = "Noclip(Y)"
  559. else
  560. Noclipp.Text = "Noclip(N)"
  561. end
  562. end)
  563. -- ---------------------------------------------------
  564. local Exit = Instance.new('TextButton', Body)
  565. Exit.Name = 'Exit'
  566. Exit.Parent = JailThatGUI
  567. Exit.Active = true
  568. Exit.BackgroundColor3 = Color3.new(255/0/0)
  569. Exit.BackgroundTransparency = 0
  570. Exit.BorderSizePixel = 5
  571. Exit.Position = UDim2.new(0,450,0,18)
  572. Exit.Size = UDim2.new(0,80,0,18)
  573. Exit.Font = 'SourceSansBold'
  574. Exit.FontSize = 'Size24'
  575. Exit.Text = 'Toggle'
  576. Exit.TextColor3 = Color3.new(255,255,255)
  577. Exit.TextWrapped = true
  578. Exit.BorderColor3 = Color3.new(0/0/0/0)
  579. Exit.TextStrokeTransparency = 1
  580.  
  581. Exit.MouseButton1Click:connect(function()
  582. if JailThatGUI.MainFrame.Visible == false then --If Frame isn't Visible then
  583. JailThatGUI.MainFrame.Visible = true --frame becomes visible
  584. elseif --elseif -->
  585. JailThatGUI.MainFrame.Visible == true then --frame is visibe then
  586. JailThatGUI.MainFrame.Visible = false --frame.Visible = false
  587. end
  588. end)
  589.  
  590. local mouse = game.Players.LocalPlayer:GetMouse()
  591. mouse.KeyDown:connect(function(key)
  592. if key == "t" then
  593. if JailThatGUI.MainFrame.Visible == false then --If Frame isn't Visible then
  594. JailThatGUI.MainFrame.Visible = true --frame becomes visible
  595. elseif --elseif -->
  596. JailThatGUI.MainFrame.Visible == true then --frame is visible then
  597. JailThatGUI.MainFrame.Visible = false --frame.Visible = false
  598. end
  599. end
  600. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement