View difference between Paste ID: E4LRmp43 and ECg3gXkr
SHOW: | | - or go back to the newest paste.
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
-- Objects
17
local JailThatGUI = Instance.new("ScreenGui")
18
local MainFrame = Instance.new("Frame")
19
20
-- Properties
21
22
JailThatGUI.Name = "JailThatGUI"
23
JailThatGUI.Parent = game.CoreGui
24
25
MainFrame.Name = "MainFrame"
26
MainFrame.Parent = JailThatGUI
27
MainFrame.Active = true
28
MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
29
MainFrame.BorderColor3 = Color3.new(0, 0, 0)
30
MainFrame.Draggable = true
31
MainFrame.Position = UDim2.new(0, 380, 0, 120)
32
MainFrame.Size = UDim2.new(0, 465, 0, 410)
33
MainFrame.BackgroundTransparency = 0.7
34
MainFrame.Visible = true
35
36
local AutoArrest = Instance.new('TextButton', Body)
37
AutoArrest.Name = 'AutoArrest'
38
AutoArrest.Parent = MainFrame
39
AutoArrest.Active = true
40
AutoArrest.BackgroundColor3 = Color3.new(255/0/0)
41
AutoArrest.BackgroundTransparency = 0
42
AutoArrest.BorderSizePixel = 5
43
AutoArrest.Position = UDim2.new(0,39,0,47)
44
AutoArrest.Size = UDim2.new(0,120,0,20)
45
AutoArrest.Font = 'ArialBold'
46
AutoArrest.FontSize = 'Size24'
47
AutoArrest.Text = 'AutoArrest'
48
AutoArrest.TextColor3 = Color3.new(255,255,255)
49
AutoArrest.TextWrapped = true
50
AutoArrest.BorderColor3 = Color3.new(0/0/0/0)
51
AutoArrest.TextStrokeTransparency = 1
52
AutoArrest.MouseButton1Click:connect(function()
53
while wait() do
54
while wait(0.1) do
55
localRootPart = game.Players.LocalPlayer.Character.HumanoidRootPart
56
event = game.ReplicatedStorage.Resource.Event
57
58
function getCFrameBehindPart(part)
59
   local partRotation = part.CFrame:toAxisAngle()
60
   local bottomOfPart = part.CFrame.p-Vector3.new(0,part.Size.Y/2,0)
61
   local behindPart = CFrame.new(bottomOfPart-part.CFrame.lookVector*1.2)+Vector3.new(0,1,0)
62
   return behindPart*CFrame.Angles(partRotation.X,partRotation.Y,partRotation.Z)
63
end
64
65
for _,plr in pairs(game.Teams.Criminal:GetPlayers()) do
66
   local char = plr.Character
67
   if char ~= nil and char:FindFirstChild("HumanoidRootPart") ~= nil then
68
       local rootPart = char.HumanoidRootPart
69
       repeat
70
           event:FireServer("VehicleExit")
71
           localRootPart.CFrame = getCFrameBehindPart(rootPart)
72
           wait()
73
           for _,veh in pairs(game.Workspace.Vehicles:GetChildren()) do
74
               event:FireServer("AttemptVehicleEject",veh)
75
           end
76
           event:FireServer("AttemptArrest", plr.Name)
77
       until plr.Team.Name ~= "Criminal" or rootPart == nil
78
   end
79
end
80
end
81
end
82
end)
83
84
local BankVault = Instance.new('TextButton', Body)
85
BankVault.Name = 'BankVault'
86
BankVault.Parent = MainFrame
87
BankVault.Active = true
88
BankVault.BackgroundColor3 = Color3.new(255/0/0)
89
BankVault.BackgroundTransparency = 0
90
BankVault.BorderSizePixel = 5
91
BankVault.Position = UDim2.new(0,39,0,80)
92
BankVault.Size = UDim2.new(0,120,0,20)
93
BankVault.Font = 'ArialBold'
94
BankVault.FontSize = 'Size24'
95
BankVault.Text = 'BankVault'
96
BankVault.TextColor3 = Color3.new(255,255,255)
97
BankVault.TextWrapped = true
98
BankVault.BorderColor3 = Color3.new(0/0/0/0)
99
BankVault.TextStrokeTransparency = 1
100
BankVault.MouseButton1Click:connect(function()
101
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(33.3059082,-1.67172456,803.200806) + Vector3.new(1,0,0)
102
end)
103
104
local CriminalBase = Instance.new('TextButton', Body)
105
CriminalBase.Name = 'CriminalBase'
106
CriminalBase.Parent = MainFrame
107
CriminalBase.Active = true
108
CriminalBase.BackgroundColor3 = Color3.new(255/0/0)
109
CriminalBase.BackgroundTransparency = 0
110
CriminalBase.BorderSizePixel = 5
111
CriminalBase.Position = UDim2.new(0,39,0,113)
112
CriminalBase.Size = UDim2.new(0,120,0,20)
113
CriminalBase.Font = 'ArialBold'
114
CriminalBase.FontSize = 'Size24'
115
CriminalBase.Text = '[B]ase'
116
CriminalBase.TextColor3 = Color3.new(255,255,255)
117
CriminalBase.TextWrapped = true
118
CriminalBase.BorderColor3 = Color3.new(0/0/0/0)
119
CriminalBase.TextStrokeTransparency = 1
120
CriminalBase.MouseButton1Click:connect(function()
121
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
122
end)
123
124
local mouse1 = game.Players.LocalPlayer:GetMouse()
125
mouse1.KeyDown:connect(function(key)
126
	if key == "b" then
127
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
128
end
129
	end)
130
131
local Batcave = Instance.new('TextButton', Body)
132
Batcave.Name = 'Batcave'
133
Batcave.Parent = MainFrame
134
Batcave.Active = true
135
Batcave.BackgroundColor3 = Color3.new(255/0/0)
136
Batcave.BackgroundTransparency = 0
137
Batcave.BorderSizePixel = 5
138
Batcave.Position = UDim2.new(0,39,0,146)
139
Batcave.Size = UDim2.new(0,120,0,20)
140
Batcave.Font = 'ArialBold'
141
Batcave.FontSize = 'Size24'
142
Batcave.Text = 'Batcave'
143
Batcave.TextColor3 = Color3.new(255,255,255)
144
Batcave.TextWrapped = true
145
Batcave.BorderColor3 = Color3.new(0/0/0/0)
146
Batcave.TextStrokeTransparency = 1
147
Batcave.MouseButton1Click:connect(function()
148
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1818, 49, -1657.4) + Vector3.new(1,0,0)
149
end)
150
151
local Garage = Instance.new('TextButton', Body)
152
Garage.Name = 'Garage'
153
Garage.Parent = MainFrame
154
Garage.Active = true
155
Garage.BackgroundColor3 = Color3.new(255/0/0)
156
Garage.BackgroundTransparency = 0
157
Garage.BorderSizePixel = 5
158
Garage.Position = UDim2.new(0,39,0,179)
159
Garage.Size = UDim2.new(0,120,0,20)
160
Garage.Font = 'ArialBold'
161
Garage.FontSize = 'Size24'
162
Garage.Text = 'Garage'
163
Garage.TextColor3 = Color3.new(255,255,255)
164
Garage.TextWrapped = true
165
Garage.BorderColor3 = Color3.new(0/0/0/0)
166
Garage.TextStrokeTransparency = 1
167
Garage.MouseButton1Click:connect(function()
168
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-342.130798, 19.3135223, 1182.73669) + Vector3.new(1,0,0)
169
end)
170
171
local PoliceCars = Instance.new('TextButton', Body)
172
PoliceCars.Name = 'PoliceCars'
173
PoliceCars.Parent = MainFrame
174
PoliceCars.Active = true
175
PoliceCars.BackgroundColor3 = Color3.new(255/0/0)
176
PoliceCars.BackgroundTransparency = 0
177
PoliceCars.BorderSizePixel = 5
178
PoliceCars.Position = UDim2.new(0,39,0,212)
179
PoliceCars.Size = UDim2.new(0,120,0,20)
180
PoliceCars.Font = 'ArialBold'
181
PoliceCars.FontSize = 'Size24'
182
PoliceCars.Text = 'PoliceCars'
183
PoliceCars.TextColor3 = Color3.new(255,255,255)
184
PoliceCars.TextWrapped = true
185
PoliceCars.BorderColor3 = Color3.new(0/0/0/0)
186
PoliceCars.TextStrokeTransparency = 1
187
PoliceCars.MouseButton1Click:connect(function()
188
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1100.4469, 17.7500038, -1493.18286) + Vector3.new(1,0,0)
189
end)
190
191
local PoliceBase = Instance.new('TextButton', Body)
192
PoliceBase.Name = 'PoliceBase'
193
PoliceBase.Parent = MainFrame
194
PoliceBase.Active = true
195
PoliceBase.BackgroundColor3 = Color3.new(255/0/0)
196
PoliceBase.BackgroundTransparency = 0
197
PoliceBase.BorderSizePixel = 5
198
PoliceBase.Position = UDim2.new(0,39,0,245)
199
PoliceBase.Size = UDim2.new(0,120,0,20)
200
PoliceBase.Font = 'ArialBold'
201
PoliceBase.FontSize = 'Size24'
202
PoliceBase.Text = 'PoliceBase'
203
PoliceBase.TextColor3 = Color3.new(255,255,255)
204
PoliceBase.TextWrapped = true
205
PoliceBase.BorderColor3 = Color3.new(0/0/0/0)
206
PoliceBase.TextStrokeTransparency = 1
207
PoliceBase.MouseButton1Click:connect(function()
208
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1130.11426, 17.950058, -1593.09766) + Vector3.new(1,0,0)
209
end)
210
211
local Helicopter1 = Instance.new('TextButton', Body)
212
Helicopter1.Name = 'Helicopter1'
213
Helicopter1.Parent = MainFrame
214
Helicopter1.Active = true
215
Helicopter1.BackgroundColor3 = Color3.new(255/0/0)
216
Helicopter1.BackgroundTransparency = 0
217
Helicopter1.BorderSizePixel = 5
218
Helicopter1.Position = UDim2.new(0,39,0,278)
219
Helicopter1.Size = UDim2.new(0,120,0,20)
220
Helicopter1.Font = 'ArialBold'
221
Helicopter1.FontSize = 'Size24'
222
Helicopter1.Text = 'Helicopter1'
223
Helicopter1.TextColor3 = Color3.new(255,255,255)
224
Helicopter1.TextWrapped = true
225
Helicopter1.BorderColor3 = Color3.new(0/0/0/0)
226
Helicopter1.TextStrokeTransparency = 1
227
Helicopter1.MouseButton1Click:connect(function()
228
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1176.4231, 59.7911148, -1572.6908) + Vector3.new(1,0,0)
229
end)
230
231
local Helicopter2 = Instance.new('TextButton', Body)
232
Helicopter2.Name = 'Helicopter2'
233
Helicopter2.Parent = MainFrame
234
Helicopter2.Active = true
235
Helicopter2.BackgroundColor3 = Color3.new(255/0/0)
236
Helicopter2.BackgroundTransparency = 0
237
Helicopter2.BorderSizePixel = 5
238
Helicopter2.Position = UDim2.new(0,39,0,311)
239
Helicopter2.Size = UDim2.new(0,120,0,20)
240
Helicopter2.Font = 'ArialBold'
241
Helicopter2.FontSize = 'Size24'
242
Helicopter2.Text = 'Helicopter2'
243
Helicopter2.TextColor3 = Color3.new(255,255,255)
244
Helicopter2.TextWrapped = true
245
Helicopter2.BorderColor3 = Color3.new(0/0/0/0)
246
Helicopter2.TextStrokeTransparency = 1
247
Helicopter2.MouseButton1Click:connect(function()
248
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(725.516174, 68.436058, 1143.79065) + Vector3.new(1,0,0)
249
end)
250
251
local Bank = Instance.new('TextButton', Body)
252
Bank.Name = 'Bank'
253
Bank.Parent = MainFrame
254
Bank.Active = true
255
Bank.BackgroundColor3 = Color3.new(255/0/0)
256
Bank.BackgroundTransparency = 0
257
Bank.BorderSizePixel = 5
258
Bank.Position = UDim2.new(0,39,0,344)
259
Bank.Size = UDim2.new(0,120,0,20)
260
Bank.Font = 'ArialBold'
261
Bank.FontSize = 'Size24'
262
Bank.Text = 'Bank'
263
Bank.TextColor3 = Color3.new(255,255,255)
264
Bank.TextWrapped = true
265
Bank.BorderColor3 = Color3.new(0/0/0/0)
266
Bank.TextStrokeTransparency = 1
267
Bank.MouseButton1Click:connect(function()
268
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147) + Vector3.new(1,0,0)
269
end)
270
271
local JewleryTop = Instance.new('TextButton', Body)
272
JewleryTop.Name = 'JewleryTop'
273
JewleryTop.Parent = MainFrame
274
JewleryTop.Active = true
275
JewleryTop.BackgroundColor3 = Color3.new(255/0/0)
276
JewleryTop.BackgroundTransparency = 0
277
JewleryTop.BorderSizePixel = 5
278
JewleryTop.Position = UDim2.new(0,39,0,377)
279
JewleryTop.Size = UDim2.new(0,120,0,20)
280
JewleryTop.Font = 'ArialBold'
281
JewleryTop.FontSize = 'Size24'
282
JewleryTop.Text = 'JewleryTop'
283
JewleryTop.TextColor3 = Color3.new(255,255,255)
284
JewleryTop.TextWrapped = true
285
JewleryTop.BorderColor3 = Color3.new(0/0/0/0)
286
JewleryTop.TextStrokeTransparency = 1
287
JewleryTop.MouseButton1Click:connect(function()
288
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175) + Vector3.new(1,0,0)
289
end)
290
291
local Buggy = Instance.new('TextButton', Body)
292
Buggy.Name = 'Buggy'
293
Buggy.Parent = MainFrame
294
Buggy.Active = true
295
Buggy.BackgroundColor3 = Color3.new(255/0/0)
296
Buggy.BackgroundTransparency = 0
297
Buggy.BorderSizePixel = 5
298
Buggy.Position = UDim2.new(0,177,0,47)
299
Buggy.Size = UDim2.new(0,120,0,20)
300
Buggy.Font = 'ArialBold'
301
Buggy.FontSize = 'Size24'
302
Buggy.Text = 'Buggy'
303
Buggy.TextColor3 = Color3.new(255,255,255)
304
Buggy.TextWrapped = true
305
Buggy.BorderColor3 = Color3.new(0/0/0/0)
306
Buggy.TextStrokeTransparency = 1
307
Buggy.MouseButton1Click:connect(function()
308
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(571.526733, 16.66436, -470.50943) + Vector3.new(1,0,0)
309
end)
310
311
local Porsche = Instance.new('TextButton', Body)
312
Porsche.Name = 'Porsche'
313
Porsche.Parent = MainFrame
314
Porsche.Active = true
315
Porsche.BackgroundColor3 = Color3.new(255/0/0)
316
Porsche.BackgroundTransparency = 0
317
Porsche.BorderSizePixel = 5
318
Porsche.Position = UDim2.new(0,177,0,80)
319
Porsche.Size = UDim2.new(0,120,0,20)
320
Porsche.Font = 'ArialBold'
321
Porsche.FontSize = 'Size24'
322
Porsche.Text = 'Porsche'
323
Porsche.TextColor3 = Color3.new(255,255,255)
324
Porsche.TextWrapped = true
325
Porsche.BorderColor3 = Color3.new(0/0/0/0)
326
Porsche.TextStrokeTransparency = 1
327
Porsche.MouseButton1Click:connect(function()
328
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1112.11475, 101.16069, 1290.57654) + Vector3.new(1,0,0)
329
end)
330
331
local DirtBike = Instance.new('TextButton', Body)
332
DirtBike.Name = 'DirtBike'
333
DirtBike.Parent = MainFrame
334
DirtBike.Active = true
335
DirtBike.BackgroundColor3 = Color3.new(255/0/0)
336
DirtBike.BackgroundTransparency = 0
337
DirtBike.BorderSizePixel = 5
338
DirtBike.Position = UDim2.new(0,177,0,113)
339
DirtBike.Size = UDim2.new(0,120,0,20)
340
DirtBike.Font = 'ArialBold'
341
DirtBike.FontSize = 'Size24'
342
DirtBike.Text = 'DirtBike'
343
DirtBike.TextColor3 = Color3.new(255,255,255)
344
DirtBike.TextWrapped = true
345
DirtBike.BorderColor3 = Color3.new(0/0/0/0)
346
DirtBike.TextStrokeTransparency = 1
347
DirtBike.MouseButton1Click:connect(function()
348
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1313.71118, 17.3656254, 370.085327) + Vector3.new(1,0,0)
349
end)
350
351
local SwatCar = Instance.new('TextButton', Body)
352
SwatCar.Name = 'SwatCar'
353
SwatCar.Parent = MainFrame
354
SwatCar.Active = true
355
SwatCar.BackgroundColor3 = Color3.new(255/0/0)
356
SwatCar.BackgroundTransparency = 0
357
SwatCar.BorderSizePixel = 5
358
SwatCar.Position = UDim2.new(0,177,0,146)
359
SwatCar.Size = UDim2.new(0,120,0,20)
360
SwatCar.Font = 'ArialBold'
361
SwatCar.FontSize = 'Size24'
362
SwatCar.Text = 'SwatCar'
363
SwatCar.TextColor3 = Color3.new(255,255,255)
364
SwatCar.TextWrapped = true
365
SwatCar.BorderColor3 = Color3.new(0/0/0/0)
366
SwatCar.TextStrokeTransparency = 1
367
SwatCar.MouseButton1Click:connect(function()
368
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1355.2417, 18, -1531.86047) + Vector3.new(1,0,0)
369
end)
370
371
local Lambo = Instance.new('TextButton', Body)
372
Lambo.Name = 'Lambo'
373
Lambo.Parent = MainFrame
374
Lambo.Active = true
375
Lambo.BackgroundColor3 = Color3.new(255/0/0)
376
Lambo.BackgroundTransparency = 0
377
Lambo.BorderSizePixel = 5
378
Lambo.Position = UDim2.new(0,177,0,179)
379
Lambo.Size = UDim2.new(0,120,0,20)
380
Lambo.Font = 'ArialBold'
381
Lambo.FontSize = 'Size24'
382
Lambo.Text = 'Lambo'
383
Lambo.TextColor3 = Color3.new(255,255,255)
384
Lambo.TextWrapped = true
385
Lambo.BorderColor3 = Color3.new(0/0/0/0)
386
Lambo.TextStrokeTransparency = 1
387
Lambo.MouseButton1Click:connect(function()
388
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(144.794067, 17.6189003, 768.572693) + Vector3.new(1,0,0)
389
end)
390
391
local Buggatti = Instance.new('TextButton', Body)
392
Buggatti.Name = 'Buggatti'
393
Buggatti.Parent = MainFrame
394
Buggatti.Active = true
395
Buggatti.BackgroundColor3 = Color3.new(255/0/0)
396
Buggatti.BackgroundTransparency = 0
397
Buggatti.BorderSizePixel = 5
398
Buggatti.Position = UDim2.new(0,177,0,212)
399
Buggatti.Size = UDim2.new(0,120,0,20)
400
Buggatti.Font = 'ArialBold'
401
Buggatti.FontSize = 'Size24'
402
Buggatti.Text = 'Bugatti'
403
Buggatti.TextColor3 = Color3.new(255,255,255)
404
Buggatti.TextWrapped = true
405
Buggatti.BorderColor3 = Color3.new(0/0/0/0)
406
Buggatti.TextStrokeTransparency = 1
407
Buggatti.MouseButton1Click:connect(function()
408
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(245.938766, 17.6064777, 1372.15076) + Vector3.new(1,0,0)
409
end)
410
411
local MiniCooper = Instance.new('TextButton', Body)
412
MiniCooper.Name = 'MiniCooper'
413
MiniCooper.Parent = MainFrame
414
MiniCooper.Active = true
415
MiniCooper.BackgroundColor3 = Color3.new(255/0/0)
416
MiniCooper.BackgroundTransparency = 0
417
MiniCooper.BorderSizePixel = 5
418
MiniCooper.Position = UDim2.new(0,177,0,245)
419
MiniCooper.Size = UDim2.new(0,120,0,20)
420
MiniCooper.Font = 'ArialBold'
421
MiniCooper.FontSize = 'Size24'
422
MiniCooper.Text = 'MiniCooper'
423
MiniCooper.TextColor3 = Color3.new(255,255,255)
424
MiniCooper.TextWrapped = true
425
MiniCooper.BorderColor3 = Color3.new(0/0/0/0)
426
MiniCooper.TextStrokeTransparency = 1
427
MiniCooper.MouseButton1Click:connect(function()
428
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(767.823242, 17.3656254, -1216.83643) + Vector3.new(1,0,0)
429
end)
430
431
local Tesla3 = Instance.new('TextButton', Body)
432
Tesla3.Name = 'Tesla3'
433
Tesla3.Parent = MainFrame
434
Tesla3.Active = true
435
Tesla3.BackgroundColor3 = Color3.new(255/0/0)
436
Tesla3.BackgroundTransparency = 0
437
Tesla3.BorderSizePixel = 5
438
Tesla3.Position = UDim2.new(0,177,0,278)
439
Tesla3.Size = UDim2.new(0,120,0,20)
440
Tesla3.Font = 'ArialBold'
441
Tesla3.FontSize = 'Size24'
442
Tesla3.Text = 'Tesla3'
443
Tesla3.TextColor3 = Color3.new(255,255,255)
444
Tesla3.TextWrapped = true
445
Tesla3.BorderColor3 = Color3.new(0/0/0/0)
446
Tesla3.TextStrokeTransparency = 1
447
Tesla3.MouseButton1Click:connect(function()
448
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-111.571999, 17.6169529, 541.515747) + Vector3.new(1,0,0)
449
end)
450
451
local PickupTruck = Instance.new('TextButton', Body)
452
PickupTruck.Name = 'PickupTruck'
453
PickupTruck.Parent = MainFrame
454
PickupTruck.Active = true
455
PickupTruck.BackgroundColor3 = Color3.new(255/0/0)
456
PickupTruck.BackgroundTransparency = 0
457
PickupTruck.BorderSizePixel = 5
458
PickupTruck.Position = UDim2.new(0,177,0,311)
459
PickupTruck.Size = UDim2.new(0,120,0,20)
460
PickupTruck.Font = 'ArialBold'
461
PickupTruck.FontSize = 'Size24'
462
PickupTruck.Text = 'PickupTruk'
463
PickupTruck.TextColor3 = Color3.new(255,255,255)
464
PickupTruck.TextWrapped = true
465
PickupTruck.BorderColor3 = Color3.new(0/0/0/0)
466
PickupTruck.TextStrokeTransparency = 1
467
PickupTruck.MouseButton1Click:connect(function()
468
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1541.10388, 17.746624, 729) + 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 = 'ArialBold'
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 DonutShop = Instance.new('TextButton', Body)
492
DonutShop.Name = 'DonutShop'
493
DonutShop.Parent = MainFrame
494
DonutShop.Active = true
495
DonutShop.BackgroundColor3 = Color3.new(255/0/0)
496
DonutShop.BackgroundTransparency = 0
497
DonutShop.BorderSizePixel = 5
498
DonutShop.Position = UDim2.new(0,177,0,344)
499
DonutShop.Size = UDim2.new(0,120,0,20)
500
DonutShop.Font = 'ArialBold'
501
DonutShop.FontSize = 'Size24'
502
DonutShop.Text = 'DonutShop'
503
DonutShop.TextColor3 = Color3.new(255,255,255)
504
DonutShop.TextWrapped = true
505
DonutShop.BorderColor3 = Color3.new(0/0/0/0)
506
DonutShop.TextStrokeTransparency = 1
507
DonutShop.MouseButton1Click:connect(function()
508
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(273, 18, -1807) + Vector3.new(1,0,0)
509
end)
510
511
local JewleryStr = Instance.new('TextButton', Body)
512
JewleryStr.Name = 'JewleryStr'
513
JewleryStr.Parent = MainFrame
514
JewleryStr.Active = true
515
JewleryStr.BackgroundColor3 = Color3.new(255/0/0)
516
JewleryStr.BackgroundTransparency = 0
517
JewleryStr.BorderSizePixel = 5
518
JewleryStr.Position = UDim2.new(0,177,0,377)
519
JewleryStr.Size = UDim2.new(0,120,0,20)
520
JewleryStr.Font = 'ArialBold'
521
JewleryStr.FontSize = 'Size24'
522
JewleryStr.Text = 'JewleryStr'
523
JewleryStr.TextColor3 = Color3.new(255,255,255)
524
JewleryStr.TextWrapped = true
525
JewleryStr.BorderColor3 = Color3.new(0/0/0/0)
526
JewleryStr.TextStrokeTransparency = 1
527
JewleryStr.MouseButton1Click:connect(function()
528
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(141.502686, 17.8576393, 1343.16345) + Vector3.new(1,0,0)
529
end)
530
531
local GunStore  = Instance.new('TextButton', Body)
532
GunStore.Name = 'GunStore'
533
GunStore.Parent = MainFrame
534
GunStore.Active = true
535
GunStore.BackgroundColor3 = Color3.new(255/0/0)
536
GunStore.BackgroundTransparency = 0
537
GunStore.BorderSizePixel = 5
538
GunStore.Position = UDim2.new(0,315,0,47)
539
GunStore.Size = UDim2.new(0,120,0,20)
540
GunStore.Font = 'ArialBold'
541
GunStore.FontSize = 'Size24'
542
GunStore.Text = 'GunStore'
543
GunStore.TextColor3 = Color3.new(255,255,255)
544
GunStore.TextWrapped = true
545
GunStore.BorderColor3 = Color3.new(0/0/0/0)
546
GunStore.TextStrokeTransparency = 1
547
GunStore.MouseButton1Click:connect(function()
548
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-24.4, 18, -1763) + Vector3.new(1,0,0)
549
end)
550
551
local Noclipp = Instance.new('TextButton', Body)
552
Noclipp.Name = 'Noclipp'
553
Noclipp.Parent = MainFrame
554
Noclipp.Active = true
555
Noclipp.BackgroundColor3 = Color3.new(255/0/0)
556
Noclipp.BackgroundTransparency = 0
557
Noclipp.BorderSizePixel = 5
558
Noclipp.Position = UDim2.new(0,315,0,80)
559
Noclipp.Size = UDim2.new(0,120,0,20)
560
Noclipp.Font = 'ArialBold'
561
Noclipp.FontSize = 'Size24'
562
Noclipp.Text = 'Noclip[N]'
563
Noclipp.TextColor3 = Color3.new(255,255,255)
564
Noclipp.TextWrapped = true
565
Noclipp.BorderColor3 = Color3.new(0/0/0/0)
566
Noclipp.TextStrokeTransparency = 1
567
568
noclip = false
569
game:GetService('RunService').Stepped:connect(function()
570
if noclip then
571
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
572
end
573
end)
574
575
Noclipp.MouseButton1Click:connect(function()
576
noclip = not noclip
577
if Noclipp.Text == "Noclip[N]" then
578
    Noclipp.Text = "Noclip[Y]"
579
else
580
    Noclipp.Text = "Noclip[N]"
581
end
582
end)
583
---------------------------------------------
584
local remvLasr  = Instance.new('TextButton', Body)
585
remvLasr.Name = 'remvLasr'
586
remvLasr.Parent = MainFrame
587
remvLasr.Active = true
588
remvLasr.BackgroundColor3 = Color3.new(255/0/0)
589
remvLasr.BackgroundTransparency = 0
590
remvLasr.BorderSizePixel = 5
591
remvLasr.Position = UDim2.new(0,315,0,113)
592
remvLasr.Size = UDim2.new(0,120,0,20)
593
remvLasr.Font = 'ArialBold'
594
remvLasr.FontSize = 'Size24'
595
remvLasr.Text = 'RemvLasr'
596
remvLasr.TextColor3 = Color3.new(255,255,255)
597
remvLasr.TextWrapped = true
598
remvLasr.BorderColor3 = Color3.new(0/0/0/0)
599
remvLasr.TextStrokeTransparency = 1
600
remvLasr.MouseButton1Click:connect(function()
601
game.Workspace.Jewelrys:FindFirstChild("BarbedWire", true):Destroy()
602
game.Workspace.Jewelrys:FindFirstChild("BarbedWire", true):Destroy()
603
game.Workspace.Jewelrys:FindFirstChild("BarbedWire", true):Destroy()
604
game.Workspace.Jewelrys:FindFirstChild("BarbedWire", true):Destroy()
605
606
workspace.Banks:FindFirstChild('Lasers', true):Destroy()
607
workspace.Jewelrys:FindFirstChild('Lasers', true):Destroy()
608
workspace.Jewelrys:FindFirstChild('Cameras', true):Destroy()
609
workspace.Doors:Destroy()
610
611
end)
612
613
local Amo  = Instance.new('TextButton', Body)
614
Amo.Name = 'Amo'
615
Amo.Parent = MainFrame
616
Amo.Active = true
617
Amo.BackgroundColor3 = Color3.new(255/0/0)
618
Amo.BackgroundTransparency = 0
619
Amo.BorderSizePixel = 5
620
Amo.Position = UDim2.new(0,315,0,146)
621
Amo.Size = UDim2.new(0,120,0,20)
622
Amo.Font = 'ArialBold'
623
Amo.FontSize = 'Size24'
624
Amo.Text = 'Ammo[N]'
625
Amo.TextColor3 = Color3.new(255,255,255)
626
Amo.TextWrapped = true
627
Amo.BorderColor3 = Color3.new(0/0/0/0)
628
Amo.TextStrokeTransparency = 1
629
Amo.MouseButton1Click:connect(function()
630
if Amo.Text == "Ammo[N]" then
631
game:GetService('Players').LocalPlayer.PlayerGui.ScreenGui.Ammo.MagSize.RobloxLocked=true
632
Amo.Text = "Ammo[Y]"
633
elseif Amo.Text == "Ammo[Y]" then
634
game:GetService('Players').LocalPlayer.PlayerGui.ScreenGui.Ammo.MagSize.RobloxLocked=false
635
Amo.Text = "Ammo[N]"
636
end
637
end)
638
639
640
641
642
643
644
645
646
647
648
649
650
local Explr  = Instance.new('TextButton', Body)
651
Explr.Name = 'Explr'
652
Explr.Parent = MainFrame
653
Explr.Active = true
654
Explr.BackgroundColor3 = Color3.new(255/0/0)
655
Explr.BackgroundTransparency = 0
656
Explr.BorderSizePixel = 5
657
Explr.Position = UDim2.new(0,315,0,377)
658
Explr.Size = UDim2.new(0,120,0,20)
659
Explr.Font = 'ArialBold'
660
Explr.FontSize = 'Size24'
661
Explr.Text = 'Explorer'
662
Explr.TextColor3 = Color3.new(255,255,255)
663
Explr.TextWrapped = true
664
Explr.BorderColor3 = Color3.new(0/0/0/0)
665
Explr.TextStrokeTransparency = 1
666
local eplr = false
667
Explr.MouseButton1Click:connect(function()
668
if eplr == false then
669
loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
670
eplr = true
671
else
672
	wait(.1)
673
end
674
end)
675
676
677
678
679
680
681
682
683
684
685
686
687
local CarSpeed  = Instance.new('TextButton', Body)
688
CarSpeed.Name = 'CarSpeed'
689
CarSpeed.Parent = MainFrame
690
CarSpeed.Active = true
691
CarSpeed.BackgroundColor3 = Color3.new(255/0/0)
692
CarSpeed.BackgroundTransparency = 0
693
CarSpeed.BorderSizePixel = 5
694
Explr.Position = UDim2.new(0,315,0,410)
695
CarSpeed.Size = UDim2.new(0,120,0,20)
696
CarSpeed.Font = 'ArialBold'
697
CarSpeed.FontSize = 'Size24'
698
CarSpeed.Text = 'CarSpeed'
699
Explr.TextColor3 = Color3.new(255,255,255)
700
Explr.TextWrapped = true
701
Explr.BorderColor3 = Color3.new(0/0/0/0)
702
Explr.TextStrokeTransparency = 1
703
local eplr = false
704
Explr.MouseButton1Click:connect(function()
705
if eplr == false then
706
dir = 0
707
gs = game.GetService
708
gs(game,"RunService").RenderStepped:connect(function()
709
   for i,v in next,workspace.Vehicles:children() do
710
       if v.Name ~= "Heli" then
711
           if v:FindFirstChild("Engine") then
712
               local bf,cf = v.Engine:FindFirstChild("NewForce"),v:GetPrimaryPartCFrame().lookVector
713
               if not bf then
714
                   bf = v.Engine:FindFirstChild("BodyForce") or v.Engine:FindFirstChild("VectorForce")
715
                   if bf then
716
                       bf = bf:Clone()
717
                       bf.Parent = v.Engine
718
                       bf.Name = "NewForce"
719
                   end
720
               end
721
               if bf then
722
                   local fa = 1
723
                   if v.Name:lower():find("bike") then fa = .3 elseif v.Name:lower():find("bugg") then fa = .5 end
724
                   if v.Seat.PlayerName.Value ~= game.Players.LocalPlayer.Name then fa = 0 end
725
                   bf.Force = Vector3.new(cf.X*300000*dir*fa,0,cf.Z*300000*dir*fa)
726
               end
727
           end
728
      end
729
   end
730
end)
731
val = {
732
{Enum.KeyCode.W,1};
733
{Enum.KeyCode.S,-1};
734
}
735
uis = gs(game,"UserInputService")
736
chk = function(k)
737
   for i,v in next,val do
738
       if v[1]==k.KeyCode then
739
           return v[2]
740
       end
741
   end
742
end
743
uis.InputBegan:connect(function(k)
744
dir = chk(k) or dir
745
end)
746
uis.InputEnded:connect(function(k)
747
   if chk(k) == dir then
748
       dir = 0
749
   end
750
end)
751
eplr = true
752
else
753
    wait(.1)
754
end
755
end)
756
757
758
-- ---------------------------------------------------
759
local Exit = Instance.new('TextButton', Body)
760
Exit.Name = 'Exit'
761
Exit.Parent = JailThatGUI
762
Exit.Active = true
763
Exit.BackgroundColor3 = Color3.new(255/0/0)
764
Exit.BackgroundTransparency = 0
765
Exit.BorderSizePixel = 5
766
Exit.Position = UDim2.new(0,450,0,18)
767
Exit.Size = UDim2.new(0,80,0,18)
768
Exit.Font = 'ArialBold'
769
Exit.FontSize = 'Size24'
770
Exit.Text = 'Toggle'
771
Exit.TextColor3 = Color3.new(255,255,255)
772
Exit.TextWrapped = true
773
Exit.BorderColor3 = Color3.new(0/0/0/0)
774
Exit.TextStrokeTransparency = 1
775
776
Exit.MouseButton1Click:connect(function()
777
      if JailThatGUI.MainFrame.Visible == false then --If Frame isn't Visible then 
778
		JailThatGUI.MainFrame.Visible = true --frame becomes visible
779
	elseif --elseif -->
780
		JailThatGUI.MainFrame.Visible == true then --frame is visibe then 
781
		JailThatGUI.MainFrame.Visible = false --frame.Visible = false
782
	end
783
end)
784
785
local mouse = game.Players.LocalPlayer:GetMouse()
786
mouse.KeyDown:connect(function(key)
787
	if key == "t" then
788
      if JailThatGUI.MainFrame.Visible == false then --If Frame isn't Visible then 
789
		JailThatGUI.MainFrame.Visible = true --frame becomes visible
790
	elseif --elseif -->
791
		JailThatGUI.MainFrame.Visible == true then --frame is visible then 
792
		JailThatGUI.MainFrame.Visible = false --frame.Visible = false
793
		end
794
	end
795
end)