Advertisement
Guest User

OMG SCRIPTS

a guest
Dec 17th, 2017
1,140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.62 KB | None | 0 0
  1. local h = Instance.new("Hint")
  2. h.Parent = workspace
  3. h.Text = "Tip: press t for opening/closing gui quickly, b to tele to crim base. Made by bae, Ricochet."
  4.  
  5. local services = setmetatable({}, {__index = function(_, key) return game:GetService(key) end})
  6. local WSpace = services.Workspace
  7. local Plyr = services.Players
  8. local RepStore = services. ReplicatedStorage
  9.  
  10. Plyr.Name = "Players"
  11. WSpace.Name = "Workspace"
  12. RepStore.Name = "ReplicatedStorage"
  13. wait(5)
  14. h:Remove()
  15.  
  16. local myLoc = game.Players.LocalPlayer.Character.HumanoidRootPart
  17. -- Undo
  18. tpBack = function()
  19. if workspace:FindFirstChild('TpCheckpoint') then
  20. workspace:FindFirstChild('TpCheckpoint'):Destroy()
  21. end
  22. wait()
  23. local tpBak = Instance.new("Part")
  24. tpBak.Parent = workspace
  25. tpBak.CFrame = myLoc.CFrame
  26. tpBak.Anchored = true
  27. tpBak.Transparency = 1
  28. tpBak.CanCollide = false
  29. tpBak.Name = "TpCheckpoint"
  30. wait()
  31. end
  32.  
  33. -- local tpBakRmv = workspace:FindFirstChild('TpCheckpoint'):Destroy()
  34.  
  35. -- Objects
  36. local JailThatGUI = Instance.new("ScreenGui")
  37. local MainFrame = Instance.new("Frame")
  38.  
  39. -- Properties
  40.  
  41. JailThatGUI.Name = "JailThatGUI"
  42. JailThatGUI.Parent = game.CoreGui
  43.  
  44. MainFrame.Name = "MainFrame"
  45. MainFrame.Parent = JailThatGUI
  46. MainFrame.Active = true
  47. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  48. MainFrame.BorderColor3 = Color3.new(0, 0, 0)
  49. MainFrame.Draggable = true
  50. MainFrame.Position = UDim2.new(0, 380, 0, 120)
  51. MainFrame.Size = UDim2.new(0, 465, 0, 410)
  52. MainFrame.BackgroundTransparency = 0.7
  53. MainFrame.Visible = true
  54.  
  55. local AutoArrest = Instance.new('TextButton', Body)
  56. AutoArrest.Name = 'AutoArrest'
  57. AutoArrest.Parent = MainFrame
  58. AutoArrest.Active = true
  59. AutoArrest.BackgroundColor3 = Color3.new(255/0/0)
  60. AutoArrest.BackgroundTransparency = 0
  61. AutoArrest.BorderSizePixel = 5
  62. AutoArrest.Position = UDim2.new(0,39,0,47)
  63. AutoArrest.Size = UDim2.new(0,120,0,20)
  64. AutoArrest.Font = 'ArialBold'
  65. AutoArrest.FontSize = 'Size24'
  66. AutoArrest.Text = 'AutoArrest'
  67. AutoArrest.TextColor3 = Color3.new(255,255,255)
  68. AutoArrest.TextWrapped = true
  69. AutoArrest.BorderColor3 = Color3.new(0/0/0/0)
  70. AutoArrest.TextStrokeTransparency = 1
  71. AutoArrest.MouseButton1Click:connect(function()
  72. while wait() do
  73. while wait(0.1) do
  74. localRootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
  75. event = game.ReplicatedStorage.Resource.Event
  76.  
  77. function getCFrameBehindPart(part)
  78. local partRotation = part.CFrame:toAxisAngle()
  79. local bottomOfPart = part.CFrame.p-Vector3.new(0,part.Size.Y/2,0)
  80. local behindPart = CFrame.new(bottomOfPart-part.CFrame.lookVector*1.2)+Vector3.new(0,1,0)
  81. return behindPart*CFrame.Angles(partRotation.X,partRotation.Y,partRotation.Z)
  82. end
  83.  
  84. for _,plr in pairs(game.Teams.Criminal:GetPlayers()) do
  85. local char = plr.Character
  86. if char ~= nil and char:FindFirstChild("HumanoidRootPart") ~= nil then
  87. local rootPart = char.HumanoidRootPart
  88. repeat
  89. event:FireServer("VehicleExit")
  90. localRootPart.CFrame = getCFrameBehindPart(rootPart)
  91. wait()
  92. for _,veh in pairs(game.Workspace.Vehicles:GetChildren()) do
  93. event:FireServer("AttemptVehicleEject",veh)
  94. end
  95. event:FireServer("AttemptArrest", plr.Name)
  96. until plr.Team.Name ~= "Criminal" or rootPart == nil
  97. end
  98. end
  99. end
  100. end
  101. end)
  102.  
  103. local BankVault = Instance.new('TextButton', Body)
  104. BankVault.Name = 'BankVault'
  105. BankVault.Parent = MainFrame
  106. BankVault.Active = true
  107. BankVault.BackgroundColor3 = Color3.new(255/0/0)
  108. BankVault.BackgroundTransparency = 0
  109. BankVault.BorderSizePixel = 5
  110. BankVault.Position = UDim2.new(0,39,0,80)
  111. BankVault.Size = UDim2.new(0,120,0,20)
  112. BankVault.Font = 'ArialBold'
  113. BankVault.FontSize = 'Size24'
  114. BankVault.Text = 'BankVault'
  115. BankVault.TextColor3 = Color3.new(255,255,255)
  116. BankVault.TextWrapped = true
  117. BankVault.BorderColor3 = Color3.new(0/0/0/0)
  118. BankVault.TextStrokeTransparency = 1
  119. BankVault.MouseButton1Click:connect(function()
  120. tpBack()
  121. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(33.3059082,-1.67172456,803.200806) + Vector3.new(1,0,0)
  122. end)
  123.  
  124. local CriminalBase = Instance.new('TextButton', Body)
  125. CriminalBase.Name = 'CriminalBase'
  126. CriminalBase.Parent = MainFrame
  127. CriminalBase.Active = true
  128. CriminalBase.BackgroundColor3 = Color3.new(255/0/0)
  129. CriminalBase.BackgroundTransparency = 0
  130. CriminalBase.BorderSizePixel = 5
  131. CriminalBase.Position = UDim2.new(0,39,0,113)
  132. CriminalBase.Size = UDim2.new(0,120,0,20)
  133. CriminalBase.Font = 'ArialBold'
  134. CriminalBase.FontSize = 'Size24'
  135. CriminalBase.Text = '[B]ase'
  136. CriminalBase.TextColor3 = Color3.new(255,255,255)
  137. CriminalBase.TextWrapped = true
  138. CriminalBase.BorderColor3 = Color3.new(0/0/0/0)
  139. CriminalBase.TextStrokeTransparency = 1
  140. CriminalBase.MouseButton1Click:connect(function()
  141. tpBack()
  142. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
  143. end)
  144.  
  145. local mouse1 = game.Players.LocalPlayer:GetMouse()
  146. mouse1.KeyDown:connect(function(key)
  147. if key == "b" then
  148. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
  149. end
  150. end)
  151.  
  152. local Batcave = Instance.new('TextButton', Body)
  153. Batcave.Name = 'Batcave'
  154. Batcave.Parent = MainFrame
  155. Batcave.Active = true
  156. Batcave.BackgroundColor3 = Color3.new(255/0/0)
  157. Batcave.BackgroundTransparency = 0
  158. Batcave.BorderSizePixel = 5
  159. Batcave.Position = UDim2.new(0,39,0,146)
  160. Batcave.Size = UDim2.new(0,120,0,20)
  161. Batcave.Font = 'ArialBold'
  162. Batcave.FontSize = 'Size24'
  163. Batcave.Text = 'Batcave'
  164. Batcave.TextColor3 = Color3.new(255,255,255)
  165. Batcave.TextWrapped = true
  166. Batcave.BorderColor3 = Color3.new(0/0/0/0)
  167. Batcave.TextStrokeTransparency = 1
  168. Batcave.MouseButton1Click:connect(function()
  169. tpBack()
  170. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1818, 49, -1657.4) + Vector3.new(1,0,0)
  171. end)
  172.  
  173. local Garage = Instance.new('TextButton', Body)
  174. Garage.Name = 'Garage'
  175. Garage.Parent = MainFrame
  176. Garage.Active = true
  177. Garage.BackgroundColor3 = Color3.new(255/0/0)
  178. Garage.BackgroundTransparency = 0
  179. Garage.BorderSizePixel = 5
  180. Garage.Position = UDim2.new(0,39,0,179)
  181. Garage.Size = UDim2.new(0,120,0,20)
  182. Garage.Font = 'ArialBold'
  183. Garage.FontSize = 'Size24'
  184. Garage.Text = 'Garage'
  185. Garage.TextColor3 = Color3.new(255,255,255)
  186. Garage.TextWrapped = true
  187. Garage.BorderColor3 = Color3.new(0/0/0/0)
  188. Garage.TextStrokeTransparency = 1
  189. Garage.MouseButton1Click:connect(function()
  190. tpBack()
  191. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-342.130798, 19.3135223, 1182.73669) + Vector3.new(1,0,0)
  192. end)
  193.  
  194. local PoliceCars = Instance.new('TextButton', Body)
  195. PoliceCars.Name = 'PoliceCars'
  196. PoliceCars.Parent = MainFrame
  197. PoliceCars.Active = true
  198. PoliceCars.BackgroundColor3 = Color3.new(255/0/0)
  199. PoliceCars.BackgroundTransparency = 0
  200. PoliceCars.BorderSizePixel = 5
  201. PoliceCars.Position = UDim2.new(0,39,0,212)
  202. PoliceCars.Size = UDim2.new(0,120,0,20)
  203. PoliceCars.Font = 'ArialBold'
  204. PoliceCars.FontSize = 'Size24'
  205. PoliceCars.Text = 'PoliceCars'
  206. PoliceCars.TextColor3 = Color3.new(255,255,255)
  207. PoliceCars.TextWrapped = true
  208. PoliceCars.BorderColor3 = Color3.new(0/0/0/0)
  209. PoliceCars.TextStrokeTransparency = 1
  210. PoliceCars.MouseButton1Click:connect(function()
  211. tpBack()
  212. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1100.4469, 17.7500038, -1493.18286) + Vector3.new(1,0,0)
  213. end)
  214.  
  215. local PoliceBase = Instance.new('TextButton', Body)
  216. PoliceBase.Name = 'PoliceBase'
  217. PoliceBase.Parent = MainFrame
  218. PoliceBase.Active = true
  219. PoliceBase.BackgroundColor3 = Color3.new(255/0/0)
  220. PoliceBase.BackgroundTransparency = 0
  221. PoliceBase.BorderSizePixel = 5
  222. PoliceBase.Position = UDim2.new(0,39,0,245)
  223. PoliceBase.Size = UDim2.new(0,120,0,20)
  224. PoliceBase.Font = 'ArialBold'
  225. PoliceBase.FontSize = 'Size24'
  226. PoliceBase.Text = 'PoliceBase'
  227. PoliceBase.TextColor3 = Color3.new(255,255,255)
  228. PoliceBase.TextWrapped = true
  229. PoliceBase.BorderColor3 = Color3.new(0/0/0/0)
  230. PoliceBase.TextStrokeTransparency = 1
  231. PoliceBase.MouseButton1Click:connect(function()
  232. tpBack()
  233. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1130.11426, 17.950058, -1593.09766) + Vector3.new(1,0,0)
  234. end)
  235.  
  236. local Helicopter1 = Instance.new('TextButton', Body)
  237. Helicopter1.Name = 'Helicopter1'
  238. Helicopter1.Parent = MainFrame
  239. Helicopter1.Active = true
  240. Helicopter1.BackgroundColor3 = Color3.new(255/0/0)
  241. Helicopter1.BackgroundTransparency = 0
  242. Helicopter1.BorderSizePixel = 5
  243. Helicopter1.Position = UDim2.new(0,39,0,278)
  244. Helicopter1.Size = UDim2.new(0,120,0,20)
  245. Helicopter1.Font = 'ArialBold'
  246. Helicopter1.FontSize = 'Size24'
  247. Helicopter1.Text = 'Helicopter1'
  248. Helicopter1.TextColor3 = Color3.new(255,255,255)
  249. Helicopter1.TextWrapped = true
  250. Helicopter1.BorderColor3 = Color3.new(0/0/0/0)
  251. Helicopter1.TextStrokeTransparency = 1
  252. Helicopter1.MouseButton1Click:connect(function()
  253. tpBack()
  254. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1176.4231, 59.7911148, -1572.6908) + Vector3.new(1,0,0)
  255. end)
  256.  
  257. local Helicopter2 = Instance.new('TextButton', Body)
  258. Helicopter2.Name = 'Helicopter2'
  259. Helicopter2.Parent = MainFrame
  260. Helicopter2.Active = true
  261. Helicopter2.BackgroundColor3 = Color3.new(255/0/0)
  262. Helicopter2.BackgroundTransparency = 0
  263. Helicopter2.BorderSizePixel = 5
  264. Helicopter2.Position = UDim2.new(0,39,0,311)
  265. Helicopter2.Size = UDim2.new(0,120,0,20)
  266. Helicopter2.Font = 'ArialBold'
  267. Helicopter2.FontSize = 'Size24'
  268. Helicopter2.Text = 'Helicopter2'
  269. Helicopter2.TextColor3 = Color3.new(255,255,255)
  270. Helicopter2.TextWrapped = true
  271. Helicopter2.BorderColor3 = Color3.new(0/0/0/0)
  272. Helicopter2.TextStrokeTransparency = 1
  273. Helicopter2.MouseButton1Click:connect(function()
  274. tpBack()
  275. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(725.516174, 68.436058, 1143.79065) + Vector3.new(1,0,0)
  276. end)
  277.  
  278. local Bank = Instance.new('TextButton', Body)
  279. Bank.Name = 'Bank'
  280. Bank.Parent = MainFrame
  281. Bank.Active = true
  282. Bank.BackgroundColor3 = Color3.new(255/0/0)
  283. Bank.BackgroundTransparency = 0
  284. Bank.BorderSizePixel = 5
  285. Bank.Position = UDim2.new(0,39,0,344)
  286. Bank.Size = UDim2.new(0,120,0,20)
  287. Bank.Font = 'ArialBold'
  288. Bank.FontSize = 'Size24'
  289. Bank.Text = 'Bank'
  290. Bank.TextColor3 = Color3.new(255,255,255)
  291. Bank.TextWrapped = true
  292. Bank.BorderColor3 = Color3.new(0/0/0/0)
  293. Bank.TextStrokeTransparency = 1
  294. Bank.MouseButton1Click:connect(function()
  295. tpBack()
  296. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147) + Vector3.new(1,0,0)
  297. end)
  298.  
  299. local JewleryTop = Instance.new('TextButton', Body)
  300. JewleryTop.Name = 'JewleryTop'
  301. JewleryTop.Parent = MainFrame
  302. JewleryTop.Active = true
  303. JewleryTop.BackgroundColor3 = Color3.new(255/0/0)
  304. JewleryTop.BackgroundTransparency = 0
  305. JewleryTop.BorderSizePixel = 5
  306. JewleryTop.Position = UDim2.new(0,39,0,377)
  307. JewleryTop.Size = UDim2.new(0,120,0,20)
  308. JewleryTop.Font = 'ArialBold'
  309. JewleryTop.FontSize = 'Size24'
  310. JewleryTop.Text = 'JewleryTop'
  311. JewleryTop.TextColor3 = Color3.new(255,255,255)
  312. JewleryTop.TextWrapped = true
  313. JewleryTop.BorderColor3 = Color3.new(0/0/0/0)
  314. JewleryTop.TextStrokeTransparency = 1
  315. JewleryTop.MouseButton1Click:connect(function()
  316. tpBack()
  317. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175) + Vector3.new(1,0,0)
  318. end)
  319.  
  320. local Buggy = Instance.new('TextButton', Body)
  321. Buggy.Name = 'Buggy'
  322. Buggy.Parent = MainFrame
  323. Buggy.Active = true
  324. Buggy.BackgroundColor3 = Color3.new(255/0/0)
  325. Buggy.BackgroundTransparency = 0
  326. Buggy.BorderSizePixel = 5
  327. Buggy.Position = UDim2.new(0,177,0,47)
  328. Buggy.Size = UDim2.new(0,120,0,20)
  329. Buggy.Font = 'ArialBold'
  330. Buggy.FontSize = 'Size24'
  331. Buggy.Text = 'Buggy'
  332. Buggy.TextColor3 = Color3.new(255,255,255)
  333. Buggy.TextWrapped = true
  334. Buggy.BorderColor3 = Color3.new(0/0/0/0)
  335. Buggy.TextStrokeTransparency = 1
  336. Buggy.MouseButton1Click:connect(function()
  337. tpBack()
  338. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(571.526733, 16.66436, -470.50943) + Vector3.new(1,0,0)
  339. end)
  340.  
  341. local Porsche = Instance.new('TextButton', Body)
  342. Porsche.Name = 'Porsche'
  343. Porsche.Parent = MainFrame
  344. Porsche.Active = true
  345. Porsche.BackgroundColor3 = Color3.new(255/0/0)
  346. Porsche.BackgroundTransparency = 0
  347. Porsche.BorderSizePixel = 5
  348. Porsche.Position = UDim2.new(0,177,0,80)
  349. Porsche.Size = UDim2.new(0,120,0,20)
  350. Porsche.Font = 'ArialBold'
  351. Porsche.FontSize = 'Size24'
  352. Porsche.Text = 'Porsche'
  353. Porsche.TextColor3 = Color3.new(255,255,255)
  354. Porsche.TextWrapped = true
  355. Porsche.BorderColor3 = Color3.new(0/0/0/0)
  356. Porsche.TextStrokeTransparency = 1
  357. Porsche.MouseButton1Click:connect(function()
  358. tpBack()
  359. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1112.11475, 101.16069, 1290.57654) + Vector3.new(1,0,0)
  360. end)
  361.  
  362. local DirtBike = Instance.new('TextButton', Body)
  363. DirtBike.Name = 'DirtBike'
  364. DirtBike.Parent = MainFrame
  365. DirtBike.Active = true
  366. DirtBike.BackgroundColor3 = Color3.new(255/0/0)
  367. DirtBike.BackgroundTransparency = 0
  368. DirtBike.BorderSizePixel = 5
  369. DirtBike.Position = UDim2.new(0,177,0,113)
  370. DirtBike.Size = UDim2.new(0,120,0,20)
  371. DirtBike.Font = 'ArialBold'
  372. DirtBike.FontSize = 'Size24'
  373. DirtBike.Text = 'DirtBike'
  374. DirtBike.TextColor3 = Color3.new(255,255,255)
  375. DirtBike.TextWrapped = true
  376. DirtBike.BorderColor3 = Color3.new(0/0/0/0)
  377. DirtBike.TextStrokeTransparency = 1
  378. DirtBike.MouseButton1Click:connect(function()
  379. tpBack()
  380. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1313.71118, 17.3656254, 370.085327) + Vector3.new(1,0,0)
  381. end)
  382.  
  383. local SwatCar = Instance.new('TextButton', Body)
  384. SwatCar.Name = 'SwatCar'
  385. SwatCar.Parent = MainFrame
  386. SwatCar.Active = true
  387. SwatCar.BackgroundColor3 = Color3.new(255/0/0)
  388. SwatCar.BackgroundTransparency = 0
  389. SwatCar.BorderSizePixel = 5
  390. SwatCar.Position = UDim2.new(0,177,0,146)
  391. SwatCar.Size = UDim2.new(0,120,0,20)
  392. SwatCar.Font = 'ArialBold'
  393. SwatCar.FontSize = 'Size24'
  394. SwatCar.Text = 'SwatCar'
  395. SwatCar.TextColor3 = Color3.new(255,255,255)
  396. SwatCar.TextWrapped = true
  397. SwatCar.BorderColor3 = Color3.new(0/0/0/0)
  398. SwatCar.TextStrokeTransparency = 1
  399. SwatCar.MouseButton1Click:connect(function()
  400. tpBack()
  401. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1355.2417, 18, -1531.86047) + Vector3.new(1,0,0)
  402. end)
  403.  
  404. local Lambo = Instance.new('TextButton', Body)
  405. Lambo.Name = 'Lambo'
  406. Lambo.Parent = MainFrame
  407. Lambo.Active = true
  408. Lambo.BackgroundColor3 = Color3.new(255/0/0)
  409. Lambo.BackgroundTransparency = 0
  410. Lambo.BorderSizePixel = 5
  411. Lambo.Position = UDim2.new(0,177,0,179)
  412. Lambo.Size = UDim2.new(0,120,0,20)
  413. Lambo.Font = 'ArialBold'
  414. Lambo.FontSize = 'Size24'
  415. Lambo.Text = 'Lambo'
  416. Lambo.TextColor3 = Color3.new(255,255,255)
  417. Lambo.TextWrapped = true
  418. Lambo.BorderColor3 = Color3.new(0/0/0/0)
  419. Lambo.TextStrokeTransparency = 1
  420. Lambo.MouseButton1Click:connect(function()
  421. tpBack()
  422. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(144.794067, 17.6189003, 768.572693) + Vector3.new(1,0,0)
  423. end)
  424.  
  425. local Buggatti = Instance.new('TextButton', Body)
  426. Buggatti.Name = 'Buggatti'
  427. Buggatti.Parent = MainFrame
  428. Buggatti.Active = true
  429. Buggatti.BackgroundColor3 = Color3.new(255/0/0)
  430. Buggatti.BackgroundTransparency = 0
  431. Buggatti.BorderSizePixel = 5
  432. Buggatti.Position = UDim2.new(0,177,0,212)
  433. Buggatti.Size = UDim2.new(0,120,0,20)
  434. Buggatti.Font = 'ArialBold'
  435. Buggatti.FontSize = 'Size24'
  436. Buggatti.Text = 'Bugatti'
  437. Buggatti.TextColor3 = Color3.new(255,255,255)
  438. Buggatti.TextWrapped = true
  439. Buggatti.BorderColor3 = Color3.new(0/0/0/0)
  440. Buggatti.TextStrokeTransparency = 1
  441. Buggatti.MouseButton1Click:connect(function()
  442. tpBack()
  443. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(245.938766, 17.6064777, 1372.15076) + Vector3.new(1,0,0)
  444. end)
  445.  
  446. local MiniCooper = Instance.new('TextButton', Body)
  447. MiniCooper.Name = 'MiniCooper'
  448. MiniCooper.Parent = MainFrame
  449. MiniCooper.Active = true
  450. MiniCooper.BackgroundColor3 = Color3.new(255/0/0)
  451. MiniCooper.BackgroundTransparency = 0
  452. MiniCooper.BorderSizePixel = 5
  453. MiniCooper.Position = UDim2.new(0,177,0,245)
  454. MiniCooper.Size = UDim2.new(0,120,0,20)
  455. MiniCooper.Font = 'ArialBold'
  456. MiniCooper.FontSize = 'Size24'
  457. MiniCooper.Text = 'MiniCooper'
  458. MiniCooper.TextColor3 = Color3.new(255,255,255)
  459. MiniCooper.TextWrapped = true
  460. MiniCooper.BorderColor3 = Color3.new(0/0/0/0)
  461. MiniCooper.TextStrokeTransparency = 1
  462. MiniCooper.MouseButton1Click:connect(function()
  463. tpBack()
  464. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(767.823242, 17.3656254, -1216.83643) + Vector3.new(1,0,0)
  465. end)
  466.  
  467. local Tesla3 = Instance.new('TextButton', Body)
  468. Tesla3.Name = 'Tesla3'
  469. Tesla3.Parent = MainFrame
  470. Tesla3.Active = true
  471. Tesla3.BackgroundColor3 = Color3.new(255/0/0)
  472. Tesla3.BackgroundTransparency = 0
  473. Tesla3.BorderSizePixel = 5
  474. Tesla3.Position = UDim2.new(0,177,0,278)
  475. Tesla3.Size = UDim2.new(0,120,0,20)
  476. Tesla3.Font = 'ArialBold'
  477. Tesla3.FontSize = 'Size24'
  478. Tesla3.Text = 'Tesla3'
  479. Tesla3.TextColor3 = Color3.new(255,255,255)
  480. Tesla3.TextWrapped = true
  481. Tesla3.BorderColor3 = Color3.new(0/0/0/0)
  482. Tesla3.TextStrokeTransparency = 1
  483. Tesla3.MouseButton1Click:connect(function()
  484. tpBack()
  485. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-111.571999, 17.6169529, 541.515747) + Vector3.new(1,0,0)
  486. end)
  487.  
  488. local PickupTruck = Instance.new('TextButton', Body)
  489. PickupTruck.Name = 'PickupTruck'
  490. PickupTruck.Parent = MainFrame
  491. PickupTruck.Active = true
  492. PickupTruck.BackgroundColor3 = Color3.new(255/0/0)
  493. PickupTruck.BackgroundTransparency = 0
  494. PickupTruck.BorderSizePixel = 5
  495. PickupTruck.Position = UDim2.new(0,177,0,311)
  496. PickupTruck.Size = UDim2.new(0,120,0,20)
  497. PickupTruck.Font = 'ArialBold'
  498. PickupTruck.FontSize = 'Size24'
  499. PickupTruck.Text = 'PickupTruk'
  500. PickupTruck.TextColor3 = Color3.new(255,255,255)
  501. PickupTruck.TextWrapped = true
  502. PickupTruck.BorderColor3 = Color3.new(0/0/0/0)
  503. PickupTruck.TextStrokeTransparency = 1
  504. PickupTruck.MouseButton1Click:connect(function()
  505. tpBack()
  506. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1541.10388, 17.746624, 729) + Vector3.new(1,0,0)
  507. end)
  508.  
  509. local DonutShop = Instance.new('TextButton', Body)
  510. DonutShop.Name = 'DonutShop'
  511. DonutShop.Parent = MainFrame
  512. DonutShop.Active = true
  513. DonutShop.BackgroundColor3 = Color3.new(255/0/0)
  514. DonutShop.BackgroundTransparency = 0
  515. DonutShop.BorderSizePixel = 5
  516. DonutShop.Position = UDim2.new(0,177,0,344)
  517. DonutShop.Size = UDim2.new(0,120,0,20)
  518. DonutShop.Font = 'ArialBold'
  519. DonutShop.FontSize = 'Size24'
  520. DonutShop.Text = 'DonutShop'
  521. DonutShop.TextColor3 = Color3.new(255,255,255)
  522. DonutShop.TextWrapped = true
  523. DonutShop.BorderColor3 = Color3.new(0/0/0/0)
  524. DonutShop.TextStrokeTransparency = 1
  525. DonutShop.MouseButton1Click:connect(function()
  526. tpBack()
  527. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(273, 18, -1807) + Vector3.new(1,0,0)
  528. end)
  529.  
  530. local JewleryStr = Instance.new('TextButton', Body)
  531. JewleryStr.Name = 'JewleryStr'
  532. JewleryStr.Parent = MainFrame
  533. JewleryStr.Active = true
  534. JewleryStr.BackgroundColor3 = Color3.new(255/0/0)
  535. JewleryStr.BackgroundTransparency = 0
  536. JewleryStr.BorderSizePixel = 5
  537. JewleryStr.Position = UDim2.new(0,177,0,377)
  538. JewleryStr.Size = UDim2.new(0,120,0,20)
  539. JewleryStr.Font = 'ArialBold'
  540. JewleryStr.FontSize = 'Size24'
  541. JewleryStr.Text = 'JewleryStr'
  542. JewleryStr.TextColor3 = Color3.new(255,255,255)
  543. JewleryStr.TextWrapped = true
  544. JewleryStr.BorderColor3 = Color3.new(0/0/0/0)
  545. JewleryStr.TextStrokeTransparency = 1
  546. JewleryStr.MouseButton1Click:connect(function()
  547. tpBack()
  548. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(141.502686, 17.8576393, 1343.16345) + Vector3.new(1,0,0)
  549. end)
  550.  
  551. local GunStore = Instance.new('TextButton', Body)
  552. GunStore.Name = 'GunStore'
  553. GunStore.Parent = MainFrame
  554. GunStore.Active = true
  555. GunStore.BackgroundColor3 = Color3.new(255/0/0)
  556. GunStore.BackgroundTransparency = 0
  557. GunStore.BorderSizePixel = 5
  558. GunStore.Position = UDim2.new(0,315,0,47)
  559. GunStore.Size = UDim2.new(0,120,0,20)
  560. GunStore.Font = 'ArialBold'
  561. GunStore.FontSize = 'Size24'
  562. GunStore.Text = 'GunStore'
  563. GunStore.TextColor3 = Color3.new(255,255,255)
  564. GunStore.TextWrapped = true
  565. GunStore.BorderColor3 = Color3.new(0/0/0/0)
  566. GunStore.TextStrokeTransparency = 1
  567. GunStore.MouseButton1Click:connect(function()
  568. tpBack()
  569. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-24.4, 18, -1763) + Vector3.new(1,0,0)
  570.  
  571. end)
  572.  
  573. local Noclipp = Instance.new('TextButton', Body)
  574. Noclipp.Name = 'Noclipp'
  575. Noclipp.Parent = MainFrame
  576. Noclipp.Active = true
  577. Noclipp.BackgroundColor3 = Color3.new(255/0/0)
  578. Noclipp.BackgroundTransparency = 0
  579. Noclipp.BorderSizePixel = 5
  580. Noclipp.Position = UDim2.new(0,315,0,80)
  581. Noclipp.Size = UDim2.new(0,120,0,20)
  582. Noclipp.Font = 'ArialBold'
  583. Noclipp.FontSize = 'Size24'
  584. Noclipp.Text = 'Noclip[N]'
  585. Noclipp.TextColor3 = Color3.new(255,255,255)
  586. Noclipp.TextWrapped = true
  587. Noclipp.BorderColor3 = Color3.new(0/0/0/0)
  588. Noclipp.TextStrokeTransparency = 1
  589.  
  590. noclip = false
  591. game:GetService('RunService').Stepped:connect(function()
  592. if noclip then
  593. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  594. end
  595. end)
  596.  
  597. Noclipp.MouseButton1Click:connect(function()
  598. noclip = not noclip
  599. if Noclipp.Text == "Noclip[N]" then
  600. Noclipp.Text = "Noclip[Y]"
  601. else
  602. Noclipp.Text = "Noclip[N]"
  603. end
  604. end)
  605. ---------------------------------------------
  606. local remvLasr = Instance.new('TextButton', Body)
  607. remvLasr.Name = 'remvLasr'
  608. remvLasr.Parent = MainFrame
  609. remvLasr.Active = true
  610. remvLasr.BackgroundColor3 = Color3.new(255/0/0)
  611. remvLasr.BackgroundTransparency = 0
  612. remvLasr.BorderSizePixel = 5
  613. remvLasr.Position = UDim2.new(0,315,0,113)
  614. remvLasr.Size = UDim2.new(0,120,0,20)
  615. remvLasr.Font = 'ArialBold'
  616. remvLasr.FontSize = 'Size24'
  617. remvLasr.Text = 'RemvLasr'
  618. remvLasr.TextColor3 = Color3.new(255,255,255)
  619. remvLasr.TextWrapped = true
  620. remvLasr.BorderColor3 = Color3.new(0/0/0/0)
  621. remvLasr.TextStrokeTransparency = 1
  622. remvLasr.MouseButton1Click:connect(function()
  623. game.Workspace.Jewelrys:FindFirstChild("BarbedWire", true):Destroy()
  624. game.Workspace.Jewelrys:FindFirstChild("BarbedWire", true):Destroy()
  625. game.Workspace.Jewelrys:FindFirstChild("BarbedWire", true):Destroy()
  626. game.Workspace.Jewelrys:FindFirstChild("BarbedWire", true):Destroy()
  627. workspace.Banks:FindFirstChild('Lasers', true):Destroy()
  628. workspace.Jewelrys:FindFirstChild('Lasers', true):Destroy()
  629. workspace.Jewelrys:FindFirstChild('Cameras', true):Destroy()
  630. end)
  631.  
  632. local Amo = Instance.new('TextButton', Body)
  633. Amo.Name = 'Amo'
  634. Amo.Parent = MainFrame
  635. Amo.Active = true
  636. Amo.BackgroundColor3 = Color3.new(255/0/0)
  637. Amo.BackgroundTransparency = 0
  638. Amo.BorderSizePixel = 5
  639. Amo.Position = UDim2.new(0,315,0,146)
  640. Amo.Size = UDim2.new(0,120,0,20)
  641. Amo.Font = 'ArialBold'
  642. Amo.FontSize = 'Size24'
  643. Amo.Text = 'Ammo[N]'
  644. Amo.TextColor3 = Color3.new(255,255,255)
  645. Amo.TextWrapped = true
  646. Amo.BorderColor3 = Color3.new(0/0/0/0)
  647. Amo.TextStrokeTransparency = 1
  648. Amo.MouseButton1Click:connect(function()
  649. if Amo.Text == "Ammo[N]" then
  650. game:GetService('Players').LocalPlayer.PlayerGui.ScreenGui.Ammo.MagSize.RobloxLocked=true
  651. Amo.Text = "Ammo[Y]"
  652. elseif Amo.Text == "Ammo[Y]" then
  653. game:GetService('Players').LocalPlayer.PlayerGui.ScreenGui.Ammo.MagSize.RobloxLocked=false
  654. Amo.Text = "Ammo[N]"
  655. end
  656. end)
  657.  
  658.  
  659. local CarSpeed = Instance.new('TextButton', Body)
  660. CarSpeed.Name = 'CarSpeed'
  661. CarSpeed.Parent = MainFrame
  662. CarSpeed.Active = true
  663. CarSpeed.BackgroundColor3 = Color3.new(255/0/0)
  664. CarSpeed.BackgroundTransparency = 0
  665. CarSpeed.BorderSizePixel = 5
  666. CarSpeed.Position = UDim2.new(0,315,0,179)
  667. CarSpeed.Size = UDim2.new(0,120,0,20)
  668. CarSpeed.Font = 'ArialBold'
  669. CarSpeed.FontSize = 'Size24'
  670. CarSpeed.Text = 'CarSpeed'
  671. CarSpeed.TextColor3 = Color3.new(255,255,255)
  672. CarSpeed.TextWrapped = true
  673. CarSpeed.BorderColor3 = Color3.new(0/0/0/0)
  674. CarSpeed.TextStrokeTransparency = 1
  675. CarSpeed.MouseButton1Click:connect(function()
  676. dir = 0
  677. gs = game.GetService
  678. gs(game,"RunService").RenderStepped:connect(function()
  679. for i,v in next,workspace.Vehicles:children() do
  680. if v.Name ~= "Heli" then
  681. if v:FindFirstChild("Engine") then
  682. local bf,cf = v.Engine:FindFirstChild("NewForce"),v:GetPrimaryPartCFrame().lookVector
  683. if not bf then
  684. bf = v.Engine:FindFirstChild("BodyForce") or v.Engine:FindFirstChild("VectorForce")
  685. if bf then
  686. bf = bf:Clone()
  687. bf.Parent = v.Engine
  688. bf.Name = "NewForce"
  689. end
  690. end
  691. if bf then
  692. local fa = 1
  693. if v.Name:lower():find("bike") then fa = .3 elseif v.Name:lower():find("bugg") then fa = .5 end
  694. if v.Seat.PlayerName.Value ~= game.Players.LocalPlayer.Name then fa = 0 end
  695. bf.Force = Vector3.new(cf.X*300000*dir*fa,0,cf.Z*300000*dir*fa)
  696. end
  697. end
  698. end
  699. end
  700. end)
  701. val = {
  702. {Enum.KeyCode.W,1};
  703. {Enum.KeyCode.S,-1};
  704. }
  705. uis = gs(game,"UserInputService")
  706. chk = function(k)
  707. for i,v in next,val do
  708. if v[1]==k.KeyCode then
  709. return v[2]
  710. end
  711. end
  712. end
  713. uis.InputBegan:connect(function(k)
  714. dir = chk(k) or dir
  715. end)
  716. uis.InputEnded:connect(function(k)
  717. if chk(k) == dir then
  718. dir = 0
  719. end
  720. end)
  721. end)
  722.  
  723. local WalkSpeed = Instance.new('TextButton', Body)
  724. WalkSpeed.Name = 'WalkSpeed'
  725. WalkSpeed.Parent = MainFrame
  726. WalkSpeed.Active = true
  727. WalkSpeed.BackgroundColor3 = Color3.new(255/0/0)
  728. WalkSpeed.BackgroundTransparency = 0
  729. WalkSpeed.BorderSizePixel = 5
  730. WalkSpeed.Position = UDim2.new(0,315,0,212)
  731. WalkSpeed.Size = UDim2.new(0,120,0,20)
  732. WalkSpeed.Font = 'ArialBold'
  733. WalkSpeed.FontSize = 'Size24'
  734. WalkSpeed.Text = 'WalkSpeed'
  735. WalkSpeed.TextColor3 = Color3.new(255,255,255)
  736. WalkSpeed.TextWrapped = true
  737. WalkSpeed.BorderColor3 = Color3.new(0/0/0/0)
  738. WalkSpeed.TextStrokeTransparency = 1
  739. WalkSpeed.MouseButton1Click:connect(function()
  740. local h = Instance.new("Hint")
  741. h.Parent = workspace
  742. h.Text = "Hold q to walk faster, click walkspeed again if you die to use, credits to K1LL0X"
  743. wait(5)
  744. h:Destroy()
  745. down = false
  746. velocity = Instance.new("BodyVelocity")
  747. velocity.maxForce = Vector3.new(100000, 0, 100000)
  748. local speed = 150
  749. gyro = Instance.new("BodyGyro")
  750. gyro.maxTorque = Vector3.new(100000, 0, 100000)
  751.  
  752. local hum = game.Players.LocalPlayer.Character.Humanoid
  753.  
  754. function onButton1Down(mouse)
  755. down = true
  756. velocity.Parent = game.Players.LocalPlayer.Character.UpperTorso
  757. velocity.velocity = (hum.MoveDirection) * speed
  758. gyro.Parent = game.Players.LocalPlayer.Character.UpperTorso
  759. while down do
  760. if not down then break end
  761. velocity.velocity = (hum.MoveDirection) * speed
  762. local refpos = gyro.Parent.Position + (gyro.Parent.Position - workspace.CurrentCamera.CoordinateFrame.p).unit * 5
  763. gyro.cframe = CFrame.new(gyro.Parent.Position, Vector3.new(refpos.x, gyro.Parent.Position.y, refpos.z))
  764. wait(0.1)
  765. end
  766. end
  767.  
  768. function onButton1Up(mouse)
  769. velocity.Parent = nil
  770. gyro.Parent = nil
  771. down = false
  772. end
  773.  
  774. function onSelected(mouse)
  775. mouse.KeyDown:connect(function(k) if k:lower()=="q"then onButton1Down(mouse)end end)
  776. mouse.KeyUp:connect(function(k) if k:lower()=="q"then onButton1Up(mouse)end end)
  777. end
  778.  
  779. onSelected(game.Players.LocalPlayer:GetMouse())
  780. end)
  781.  
  782. local PlayerTP = Instance.new('TextButton', Body)
  783. PlayerTP.Name = 'PlayerTP'
  784. PlayerTP.Parent = MainFrame
  785. PlayerTP.Active = true
  786. PlayerTP.BackgroundColor3 = Color3.new(255/0/0)
  787. PlayerTP.BackgroundTransparency = 0
  788. PlayerTP.BorderSizePixel = 5
  789. PlayerTP.Position = UDim2.new(0,315,0,245)
  790. PlayerTP.Size = UDim2.new(0,120,0,20)
  791. PlayerTP.Font = 'ArialBold'
  792. PlayerTP.FontSize = 'Size24'
  793. PlayerTP.Text = 'PlayerTP'
  794. PlayerTP.TextColor3 = Color3.new(255,255,255)
  795. PlayerTP.TextWrapped = true
  796. PlayerTP.BorderColor3 = Color3.new(0/0/0/0)
  797. PlayerTP.TextStrokeTransparency = 1
  798. PlayerTP.MouseButton1Click:connect(function()
  799. loadstring(game:GetObjects("rbxassetid://1022381566")[1].Source)()
  800. end)
  801.  
  802. local TPBack = Instance.new('TextButton', Body)
  803. TPBack.Name = 'TPBack'
  804. TPBack.Parent = MainFrame
  805. TPBack.Active = true
  806. TPBack.BackgroundColor3 = Color3.new(255/0/0)
  807. TPBack.BackgroundTransparency = 0
  808. TPBack.BorderSizePixel = 5
  809. TPBack.Position = UDim2.new(0,315,0,278)
  810. TPBack.Size = UDim2.new(0,120,0,20)
  811. TPBack.Font = 'ArialBold'
  812. TPBack.FontSize = 'Size24'
  813. TPBack.Text = 'Tp Back'
  814. TPBack.TextColor3 = Color3.new(255,255,255)
  815. TPBack.TextWrapped = true
  816. TPBack.BorderColor3 = Color3.new(0/0/0/0)
  817. TPBack.TextStrokeTransparency = 1
  818. local tpbk = true
  819. TPBack.MouseButton1Click:connect(function()
  820. if tpbk == true then
  821. loadstring(game:GetObjects("rbxassetid://1024503184")[1].Source)()
  822. tpbk = false
  823. end
  824.  
  825. local tpCheck = workspace:FindFirstChild("TpCheckpoint")
  826. local PartLoc = tpCheck.CFrame
  827. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = PartLoc + Vector3.new(1,0,0)
  828.  
  829. end)
  830.  
  831. local Explr = Instance.new('TextButton', Body)
  832. Explr.Name = 'Explr'
  833. Explr.Parent = MainFrame
  834. Explr.Active = true
  835. Explr.BackgroundColor3 = Color3.new(255/0/0)
  836. Explr.BackgroundTransparency = 0
  837. Explr.BorderSizePixel = 5
  838. Explr.Position = UDim2.new(0,315,0,377)
  839. Explr.Size = UDim2.new(0,120,0,20)
  840. Explr.Font = 'ArialBold'
  841. Explr.FontSize = 'Size24'
  842. Explr.Text = 'Explorer'
  843. Explr.TextColor3 = Color3.new(255,255,255)
  844. Explr.TextWrapped = true
  845. Explr.BorderColor3 = Color3.new(0/0/0/0)
  846. Explr.TextStrokeTransparency = 1
  847. local eplr = true
  848. Explr.MouseButton1Click:connect(function()
  849. if eplr == true then
  850. loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
  851. eplr = false
  852. else
  853. wait(.1)
  854. end
  855. end)
  856.  
  857. -- UDim2.new(0,315,0,377) last position by 33.
  858.  
  859. -- ---------------------------------------------------
  860. local Exit = Instance.new('TextButton', Body)
  861. Exit.Name = 'Exit'
  862. Exit.Parent = JailThatGUI
  863. Exit.Active = true
  864. Exit.BackgroundColor3 = Color3.new(255/0/0)
  865. Exit.BackgroundTransparency = 0
  866. Exit.BorderSizePixel = 5
  867. Exit.Position = UDim2.new(0,450,0,30)
  868. Exit.Size = UDim2.new(0,80,0,18)
  869. Exit.Font = 'ArialBold'
  870. Exit.FontSize = 'Size24'
  871. Exit.Text = 'Toggle'
  872. Exit.TextColor3 = Color3.new(255,255,255)
  873. Exit.TextWrapped = true
  874. Exit.BorderColor3 = Color3.new(0/0/0/0)
  875. Exit.TextStrokeTransparency = 1
  876.  
  877. Exit.MouseButton1Click:connect(function()
  878. if JailThatGUI.MainFrame.Visible == false then --If Frame isn't Visible then
  879. JailThatGUI.MainFrame.Visible = true --frame becomes visible
  880. elseif --elseif -->
  881. JailThatGUI.MainFrame.Visible == true then --frame is visibe then
  882. JailThatGUI.MainFrame.Visible = false --frame.Visible = false
  883. end
  884. end)
  885.  
  886. local mouse = game.Players.LocalPlayer:GetMouse()
  887. mouse.KeyDown:connect(function(key)
  888. if key == "t" then
  889. if JailThatGUI.MainFrame.Visible == false then --If Frame isn't Visible then
  890. JailThatGUI.MainFrame.Visible = true --frame becomes visible
  891. elseif --elseif -->
  892. JailThatGUI.MainFrame.Visible == true then --frame is visible then
  893. JailThatGUI.MainFrame.Visible = false --frame.Visible = false
  894. end
  895. end
  896. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement