zeckons

Constant UPdates

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