View difference between Paste ID: dHQS9enE and ym0KFNJm
SHOW: | | - or go back to the newest paste.
1-
-- Main
1+
wait(1)
2-
local PrisonLifeGui = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
2+
3-
local Drag = Instance.new("Frame")
3+
-- Local Player
4-
local Title = Instance.new("TextLabel")
4+
local p = game.Players.LocalPlayer
5-
local Close = Instance.new("TextButton")
5+
6-
local Open = Instance.new("TextButton")
6+
-- Instance Objects
7-
local Body = Instance.new("ScrollingFrame")
7+
local gui = Instance.new('ScreenGui',p.PlayerGui)
8-
local Scroll = Instance.new("ScrollingFrame")
8+
local frame = Instance.new('ScrollingFrame',gui)
9-
-- Pages
9+
local open = Instance.new('TextButton',gui)
10-
local WelcomePage = Instance.new("Frame")
10+
local name = Instance.new('TextLabel',frame)
11-
local WeaponsPage = Instance.new("Frame")
11+
local arrest = Instance.new('TextButton',frame)
12-
local TeleportPage = Instance.new("ScrollingFrame")
12+
local btools = Instance.new('TextButton',frame)
13-
local DoorPage = Instance.new("Frame")
13+
local escape = Instance.new('TextButton',frame)
14-
local KillAuraPage = Instance.new("Frame")
14+
local exit = Instance.new('TextButton',frame)
15-
local CarTelePage = Instance.new("Frame")
15+
local killaura = Instance.new('TextButton',frame)
16-
-- Side Buttons
16+
local melee = Instance.new('TextButton',frame)
17-
local WeaponsButton = Instance.new("TextButton")
17+
local removedoors = Instance.new('TextButton',frame)
18-
local TeleportButton = Instance.new("TextButton")
18+
local tools = Instance.new('TextButton',frame)
19-
local DoorButton = Instance.new("TextButton")
19+
local speedplus = Instance.new('TextButton',frame)
20-
local KillButton = Instance.new("TextButton")
20+
local speedminus = Instance.new('TextButton',frame)
21-
local CarButton = Instance.new("TextButton")
21+
local jumpplus = Instance.new('TextButton',frame)
22-
-- Welcome Page Contents
22+
local jumpminus = Instance.new('TextButton',frame)
23-
local Welcome = Instance.new("TextLabel")
23+
local sedan = Instance.new('TextButton',frame)
24-
local Credits = Instance.new("TextLabel")
24+
local squad = Instance.new('TextButton',frame)
25-
local Credit2 = Instance.new("TextLabel")
25+
local bypass = Instance.new('TextButton',frame)
26-
local TxtWall = Instance.new("TextLabel")
26+
local db = Instance.new('TextButton',frame)
27-
local CredPic = Instance.new("ImageLabel")
27+
local floor = Instance.new('TextButton',frame)
28-
-- Weapon Page Contents
28+
29-
local WepTut = Instance.new("TextLabel")
29+
-- Name object
30-
local WepTxtWall = Instance.new("TextLabel")
30+
gui.Name = "Prison Life v2.0 GUI (Made By MineHacks)"
31-
local WepTutSep = Instance.new("Frame")
31+
frame.Name = "Commands"
32-
local WepButt1 = Instance.new("TextButton")
32+
open.Name = "Open"
33-
local WepButt2 = Instance.new("TextButton")
33+
name.Name = "Name"
34-
local WepButt3 = Instance.new("TextButton")
34+
arrest.Name = "ArrestButton"
35-
local WepButt4 = Instance.new("TextButton")
35+
btools.Name = "BtoolsButton"
36-
-- Door Page Contents
36+
escape.Name = "EscapeButton"
37-
local DoorTut = Instance.new("TextLabel")
37+
exit.Name = "ExitButton"
38-
local DoorTxtWall = Instance.new("TextLabel")
38+
killaura.Name = "KillauraButton"
39-
local DoorPageSep = Instance.new("Frame")
39+
melee.Name = "MeleeButton"
40-
local DoorButt = Instance.new("TextButton")
40+
removedoors.Name = "RemoveDoorsButton"
41-
-- Teleport Page Contents
41+
tools.Name = "ToolsButton"
42-
local TeleTut = Instance.new("TextLabel")
42+
speedplus.Name = "SpeedAdd"
43-
local TeleTxtWall = Instance.new("TextLabel")
43+
speedminus.Name = "SpeedReduce"
44-
local TeleButt1 = Instance.new("TextButton")
44+
jumpplus.Name = "JumpAdd"
45-
local TeleButt2 = Instance.new("TextButton")
45+
jumpminus.Name = "JumpReduce"
46-
local TeleButt3 = Instance.new("TextButton")
46+
sedan.Name = "SedanCar"
47-
local TeleButt4 = Instance.new("TextButton")
47+
squad.Name = "SquadCar"
48-
local TeleButt5 = Instance.new("TextButton")
48+
bypass.Name = "Bypass"
49-
local TeleButt6 = Instance.new("TextButton")
49+
db.Name = "DisableBypass"
50-
local TeleButt7 = Instance.new("TextButton")
50+
floor.Name = "Floor"
51-
local TeleButt8 = Instance.new("TextButton")
51+
52-
local TeleButt9 = Instance.new("TextButton")
52+
-- Object Visible
53-
local TeleButt10 = Instance.new("TextButton")
53+
frame.Visible = true
54-
-- Kill Aura Page Contents
54+
open.Visible = false
55-
local KillTut = Instance.new("TextLabel")
55+
name.Visible = true
56-
local KillTxtWall = Instance.new("TextLabel")
56+
arrest.Visible = true
57-
local KillPageSep = Instance.new("Frame")
57+
btools.Visible = true
58-
local KillButt = Instance.new("TextButton")
58+
escape.Visible = true
59-
-- Car Teleport Page Contents
59+
exit.Visible = true
60-
local CarTut = Instance.new("TextLabel")
60+
killaura.Visible = true
61-
local CarTxtWall = Instance.new("TextLabel")
61+
melee.Visible = true
62-
local CarPageSep = Instance.new("Frame")
62+
removedoors.Visible = true
63-
local CarTeleButt1 = Instance.new("TextButton")
63+
tools.Visible = true
64-
local CarTeleButt2 = Instance.new("TextButton")
64+
speedplus.Visible = true
65-
-- Main
65+
speedminus.Visible = true
66
jumpplus.Visible = true
67-
Drag.Active = true
67+
jumpminus.Visible = true
68-
Drag.Name = "Drag"
68+
sedan.Visible = true
69-
Drag.Parent = PrisonLifeGui
69+
squad.Visible = true
70-
Drag.BackgroundColor3 = Color3.new(0/255, 105/255, 154/255)
70+
bypass.Visible = true
71-
Drag.BackgroundTransparency = 0
71+
db.Visible = true
72-
Drag.BorderSizePixel = 0
72+
floor.Visible = true
73-
Drag.Position = UDim2.new(0, 0, 0, 0)
73+
74-
Drag.Selectable = true
74+
-- Background Color
75-
Drag.Draggable = true
75+
frame.BackgroundColor3 = Color3.new(255,255,255)
76-
Drag.Size = UDim2.new(0, 300, 0, 35)
76+
open.BackgroundColor3 = Color3.new(0,255,0)
77
name.BackgroundColor3 = Color3.new(255,0,0)
78-
Title.Parent = Drag
78+
arrest.BackgroundColor3 = Color3.new(255,0,0)
79-
Title.Name = "Title"
79+
btools.BackgroundColor3 = Color3.new(255,0,0)
80-
Title.BackgroundTransparency = 1
80+
escape.BackgroundColor3 = Color3.new(255,0,0)
81-
Title.BorderSizePixel = 0
81+
exit.BackgroundColor3 = Color3.new(255,0,0)
82-
Title.Position = UDim2.new(0, 30, 0, 0)
82+
killaura.BackgroundColor3 = Color3.new(255,0,0)
83-
Title.Size = UDim2.new(0, 225, 0, 35)
83+
melee.BackgroundColor3 = Color3.new(255,0,0)
84-
Title.Font = "SourceSansBold"
84+
removedoors.BackgroundColor3 = Color3.new(255,0,0)
85-
Title.TextColor3 = Color3.new(255, 255, 255)
85+
tools.BackgroundColor3 = Color3.new(255,0,0)
86-
Title.Text = "Prison Life GUI [Revamp]"
86+
speedplus.BackgroundColor3 = Color3.new(255,0,0)
87-
Title.TextSize = 26
87+
speedminus.BackgroundColor3 = Color3.new(255,0,0)
88
jumpplus.BackgroundColor3 = Color3.new(255,0,0)
89-
Close.Parent = Drag
89+
jumpminus.BackgroundColor3 = Color3.new(255,0,0)
90-
Close.Name = "Close"
90+
sedan.BackgroundColor3 = Color3.new(255,0,0)
91-
Close.BackgroundTransparency = 1
91+
squad.BackgroundColor3 = Color3.new(255,0,0)
92-
Close.BorderSizePixel = 0
92+
bypass.BackgroundColor3 = Color3.new(255,0,0)
93-
Close.Position = UDim2.new(0, 265, 0, 0)
93+
db.BackgroundColor3 = Color3.new(255,0,0)
94-
Close.Size = UDim2.new(0, 35, 0, 35)
94+
floor.BackgroundColor3 = Color3.new(255,0,0)
95-
Close.Font = "SourceSansBold"
95+
96-
Close.TextColor3 = Color3.new(255, 255, 255)
96+
-- Background Transparency
97-
Close.Text = "X"
97+
frame.BackgroundTransparency = 0.5
98-
Close.TextSize = 28
98+
open.BackgroundTransparency = 0
99-
Close.MouseButton1Down:connect(function()
99+
name.BackgroundTransparency = 0.6
100-
Body:TweenSize(UDim2.new(1,0,0,0), 'In', 'Quad', 0.5, false)
100+
arrest.BackgroundTransparency = 0
101-
wait(0.5)
101+
btools.BackgroundTransparency = 0
102-
Close.Visible = false
102+
escape.BackgroundTransparency = 0
103-
Open.Visible = true
103+
exit.BackgroundTransparency = 0
104
killaura.BackgroundTransparency = 0
105
melee.BackgroundTransparency = 0
106-
Open.Parent = Drag
106+
removedoors.BackgroundTransparency = 0
107-
Open.Visible = false
107+
tools.BackgroundTransparency = 0
108-
Open.Name = "Open"
108+
speedplus.BackgroundTransparency = 0
109-
Open.BackgroundTransparency = 1
109+
speedminus.BackgroundTransparency = 0
110-
Open.BorderSizePixel = 0
110+
jumpplus.BackgroundTransparency = 0
111-
Open.Position = UDim2.new(0, 265, 0, 0)
111+
jumpminus.BackgroundTransparency = 0
112-
Open.Size = UDim2.new(0, 35, 0, 35)
112+
sedan.BackgroundTransparency = 0
113-
Open.Font = "SourceSansBold"
113+
bypass.BackgroundTransparency = 0
114-
Open.TextColor3 = Color3.new(255, 255, 255)
114+
db.BackgroundTransparency = 0
115-
Open.Text = "+"
115+
floor.BackgroundTransparency = 0
116-
Open.TextSize = 28
116+
117-
Open.MouseButton1Down:connect(function()
117+
-- Objects Size
118-
Body:TweenSize(UDim2.new(0,300,0,235), 'Out', 'Bounce', 2, false)
118+
frame.Size = UDim2.new(0,250,0,300)
119-
wait(0.5)
119+
open.Size = UDim2.new(0,80,0,30)
120-
Close.Visible = true
120+
name.Size = UDim2.new(0,180,0,40)
121-
Open.Visible = false
121+
arrest.Size = UDim2.new(0.9,12,0,30)
122
btools.Size = UDim2.new(0.9,12,0,30)
123
escape.Size = UDim2.new(0.9,12,0,30)
124-
Body.Parent = Drag
124+
exit.Size = UDim2.new(0,50,0,40)
125-
Body.Name = "Body"
125+
killaura.Size = UDim2.new(0.9,12,0,30)
126-
Body.BackgroundColor3 = Color3.new(0/255, 85/255, 127/255)
126+
melee.Size = UDim2.new(0.9,12,0,30)
127-
Body.BackgroundTransparency = 0
127+
removedoors.Size = UDim2.new(0.9,12,0,30)
128-
Body.BorderSizePixel = 0
128+
tools.Size = UDim2.new(0.9,12,0,30)
129-
Body.Position = UDim2.new(0, 0, 0, 35)
129+
speedplus.Size = UDim2.new(0.9,12,0,30)
130-
Body.Size = UDim2.new(0, 300, 0, 235)
130+
speedminus.Size = UDim2.new(0.9,12,0,30)
131-
Body.ScrollingEnabled = false
131+
jumpplus.Size = UDim2.new(0.9,12,0,30)
132-
Body.ScrollBarThickness = 0
132+
jumpminus.Size = UDim2.new(0.9,12,0,30)
133
sedan.Size = UDim2.new(0.9,12,0,30)
134-
Scroll.Parent = Body
134+
squad.Size = UDim2.new(0.9,12,0,30)
135-
Scroll.Name = "Scroll"
135+
bypass.Size = UDim2.new(0.9,12,0,30)
136-
Scroll.BackgroundTransparency = 1
136+
db.Size = UDim2.new(0.9,12,0,30)
137-
Scroll.BorderSizePixel = 0
137+
floor.Size = UDim2.new(0.9,12,0,30)
138-
Scroll.Position = UDim2.new(0, 0, 0, 0)
138+
139-
Scroll.Size = UDim2.new(0, 110, 0, 235)
139+
-- Objects Position
140-
Scroll.CanvasSize = UDim2.new(0, 0, 2, 0)
140+
frame.Position = UDim2.new(0,5,0.4,0)
141
open.Position = UDim2.new(0,0,0,500)
142-
-- Pages
142+
name.Position = UDim2.new(0,0,0,0)
143
arrest.Position = UDim2.new(0,0,0,320)
144-
WelcomePage.Parent = Body
144+
btools.Position = UDim2.new(0,0,0,185)
145-
WelcomePage.Visible = true
145+
escape.Position = UDim2.new(0,0,0,230)
146-
WelcomePage.Name = "WelcomePage"
146+
exit.Position = UDim2.new(0,184,0,0)
147-
WelcomePage.BackgroundTransparency = 1
147+
killaura.Position = UDim2.new(0,0,0,275)
148-
WelcomePage.BorderSizePixel = 0
148+
melee.Position = UDim2.new(0,0,0,140)
149-
WelcomePage.Position = UDim2.new(0, 115, 0, 0)
149+
removedoors.Position = UDim2.new(0,0,0,50)
150-
WelcomePage.Size = UDim2.new(0, 180, 0, 235)
150+
tools.Position = UDim2.new(0,0,0,95)
151
speedplus.Position = UDim2.new(0,0,0,365)
152-
WeaponsPage.Parent = Body
152+
speedminus.Position = UDim2.new(0,0,0,410)
153-
WeaponsPage.Visible = false
153+
jumpplus.Position = UDim2.new(0,0,0,455)
154-
WeaponsPage.Name = "WeaponsPage"
154+
jumpminus.Position = UDim2.new(0,0,0,500)
155-
WeaponsPage.BackgroundTransparency = 1
155+
sedan.Position = UDim2.new(0,0,0,545)
156-
WeaponsPage.BorderSizePixel = 0
156+
squad.Position = UDim2.new(0,0,0,590)
157-
WeaponsPage.Position = UDim2.new(0, 115, 0, 0)
157+
bypass.Position = UDim2.new(0,0,0,635)
158-
WeaponsPage.Size = UDim2.new(0, 180, 0, 235)
158+
db.Position = UDim2.new(0,0,0,680)
159
floor.Position = UDim2.new(0,0,0,725)
160-
TeleportPage.Parent = Body
160+
161-
TeleportPage.Visible = false
161+
-- Objects Text Color
162-
TeleportPage.Name = "TeleportPage"
162+
open.TextColor3 = Color3.new(255,0,0)
163-
TeleportPage.BackgroundTransparency = 1
163+
name.TextColor3 = Color3.new(0,255,255)
164-
TeleportPage.BorderSizePixel = 0
164+
arrest.TextColor3 = Color3.new(34,139,34)
165-
TeleportPage.Position = UDim2.new(0, 115, 0, 0)
165+
btools.TextColor3 = Color3.new(34,139,34)
166-
TeleportPage.Size = UDim2.new(0, 180, 0, 235)
166+
escape.TextColor3 = Color3.new(34,139,34)
167-
TeleportPage.CanvasSize = UDim2.new(0, 0, 2.5, 0)
167+
exit.TextColor3 = Color3.new(34,139,34)
168
killaura.TextColor3 = Color3.new(34,139,34)
169-
DoorPage.Parent = Body
169+
melee.TextColor3 = Color3.new(34,139,34)
170-
DoorPage.Visible = false
170+
removedoors.TextColor3 = Color3.new(34,139,34)
171-
DoorPage.Name = "DoorPage"
171+
tools.TextColor3 = Color3.new(34,139,34)
172-
DoorPage.BackgroundTransparency = 1
172+
speedplus.TextColor3 = Color3.new(34,139,34)
173-
DoorPage.BorderSizePixel = 0
173+
speedminus.TextColor3 = Color3.new(34,139,34)
174-
DoorPage.Position = UDim2.new(0, 115, 0, 0)
174+
jumpplus.TextColor3 = Color3.new(34,139,34)
175-
DoorPage.Size = UDim2.new(0, 180, 0, 235)
175+
jumpminus.TextColor3 = Color3.new(34,139,34)
176
sedan.TextColor3 = Color3.new(34,139,34)
177-
KillAuraPage.Parent = Body
177+
squad.TextColor3 = Color3.new(34,139,34)
178-
KillAuraPage.Visible = false
178+
bypass.TextColor3 = Color3.new(34,139,34)
179-
KillAuraPage.Name = "KillAuraPage"
179+
db.TextColor3 = Color3.new(34,139,34)
180-
KillAuraPage.BackgroundTransparency = 1
180+
floor.TextColor3 = Color3.new(34,139,34)
181-
KillAuraPage.BorderSizePixel = 0
181+
182-
KillAuraPage.Position = UDim2.new(0, 115, 0, 0)
182+
-- Object Font
183-
KillAuraPage.Size = UDim2.new(0, 180, 0, 235)
183+
name.Font = 'Fantasy'
184
185-
CarTelePage.Parent = Body
185+
-- Object Text
186-
CarTelePage.Visible = false
186+
open.Text = 'Open For Gui'
187-
CarTelePage.Name = "CarTelePage"
187+
name.Text = 'Prison Life Gui Hack (Made By MineHacks)'
188-
CarTelePage.BackgroundTransparency = 1
188+
arrest.Text = 'Arrest [Cops Only]'
189-
CarTelePage.BorderSizePixel = 0
189+
btools.Text = 'Give Btools'
190-
CarTelePage.Position = UDim2.new(0, 115, 0, 0)
190+
escape.Text = 'Escape The Prison'
191-
CarTelePage.Size = UDim2.new(0, 180, 0, 235)
191+
exit.Text = 'Exit'
192
killaura.Text = 'Kill Aura [Danger]'
193-
-- Buttons
193+
melee.Text = 'Give Melee'
194
removedoors.Text = 'Remove Doors'
195-
WeaponsButton.Parent = Scroll
195+
tools.Text = 'Give Guns'
196-
WeaponsButton.Name = "WeaponsButton"
196+
speedplus.Text = 'WalkSpeed + 10'
197-
WeaponsButton.BackgroundTransparency = 1
197+
speedminus.Text = 'WalkSpeed - 10'
198-
WeaponsButton.BorderSizePixel = 0
198+
jumpplus.Text = 'JumpPower + 10'
199-
WeaponsButton.Position = UDim2.new(0, 5, 0, 5)
199+
jumpminus.Text = 'JumpPower - 10'
200-
WeaponsButton.Size = UDim2.new(0, 85, 0, 35)
200+
sedan.Text = 'Teleport Seden'
201-
WeaponsButton.Font = "SourceSansBold"
201+
squad.Text = 'Teleport Squad'
202-
WeaponsButton.TextColor3 = Color3.new(255, 255, 255)
202+
bypass.Text = 'Bypass Taser, Arrest [Cannot Punch]'
203-
WeaponsButton.Text = "Weapons"
203+
db.Text = 'Disable Bypass Taser, Arrest'
204-
WeaponsButton.TextSize = 24
204+
floor.Text = 'Get Tools on the floor'
205-
WeaponsButton.Style = "RobloxRoundButton"
205+
206-
WeaponsButton.MouseButton1Down:connect(function()
206+
-- Object Text Scaled
207-
WeaponsPage.Visible = true
207+
open.TextScaled = true
208-
TeleportPage.Visible = false
208+
name.TextScaled = true
209-
DoorPage.Visible = false
209+
arrest.TextScaled = true
210-
KillAuraPage.Visible = false
210+
btools.TextScaled = true
211-
CarTelePage.Visible = false
211+
escape.TextScaled = true
212-
WelcomePage.Active = false
212+
exit.TextScaled = true
213-
WelcomePage.Visible = false
213+
killaura.TextScaled = true
214
melee.TextScaled = true
215
removedoors.TextScaled = true
216-
TeleportButton.Parent = Scroll
216+
tools.TextScaled = true
217-
TeleportButton.Name = "TeleportButton"
217+
speedplus.TextScaled = true
218-
TeleportButton.BackgroundTransparency = 1
218+
speedminus.TextScaled = true
219-
TeleportButton.BorderSizePixel = 0
219+
jumpplus.TextScaled = true
220-
TeleportButton.Position = UDim2.new(0, 5, 0, 45)
220+
jumpminus.TextScaled = true
221-
TeleportButton.Size = UDim2.new(0, 85, 0, 35)
221+
sedan.TextScaled = true
222-
TeleportButton.Font = "SourceSansBold"
222+
squad.TextScaled = true
223-
TeleportButton.TextColor3 = Color3.new(255, 255, 255)
223+
bypass.TextScaled = true
224-
TeleportButton.Text = "Teleports"
224+
db.TextScaled = true
225-
TeleportButton.TextSize = 22
225+
floor.TextScaled = true
226-
TeleportButton.Style = "RobloxRoundButton"
226+
227-
TeleportButton.MouseButton1Down:connect(function()
227+
-- Frame Moveable
228-
WeaponsPage.Visible = false
228+
frame.Active = true
229-
TeleportPage.Visible = true
229+
frame.Draggable = true
230-
DoorPage.Visible = false
230+
231-
KillAuraPage.Visible = false
231+
-- Open Function
232-
CarTelePage.Visible = false
232+
open.MouseButton1Down:connect(function()
233-
WelcomePage.Active = false
233+
frame.Visible = true
234-
WelcomePage.Visible = false
234+
frame:TweenPosition(UDim2.new(0,5,0.4,0), "Out", "Bounce",1 ,true)
235
open.Visible = false
236
open.Position = UDim2.new(0,0,0,0)
237-
DoorButton.Parent = Scroll
237+
238-
DoorButton.Name = "DoorButton"
238+
239-
DoorButton.BackgroundTransparency = 1
239+
-- Close/Exit Function
240-
DoorButton.BorderSizePixel = 0
240+
exit.MouseButton1Down:connect(function()
241-
DoorButton.Position = UDim2.new(0, 5, 0, 85)
241+
frame:TweenPosition(UDim2.new(0.1,-400,0.4,0) , "Out", "Quad", 1, true)
242-
DoorButton.Size = UDim2.new(0, 85, 0, 35)
242+
  wait(1)
243-
DoorButton.Font = "SourceSansBold"
243+
frame.Visible = false
244-
DoorButton.TextColor3 = Color3.new(255, 255, 255)
244+
245-
DoorButton.Text = "Remove Doors"
245+
  open.Visible = true 
246-
DoorButton.TextSize = 14
246+
  open:TweenPosition(UDim2.new(0,2,0.8,15), "Out", "Bounce",1 ,true)
247-
DoorButton.Style = "RobloxRoundButton"
247+
248-
DoorButton.MouseButton1Down:connect(function()
248+
249-
WeaponsPage.Visible = false
249+
-- Remove Doors Function
250-
TeleportPage.Visible = false
250+
removedoors.MouseButton1Down:connect(function()
251-
DoorPage.Visible = true
251+
252-
KillAuraPage.Visible = false
252+
253-
CarTelePage.Visible = false
253+
254-
WelcomePage.Active = false
254+
-- Guns Function 
255-
WelcomePage.Visible = false
255+
tools.MouseButton1Down:connect(function()
256
local weapons = {"Remington 870", "M9", "AK-47", "M4A1", "Riot Shield"}
257
  for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
258-
KillButton.Parent = Scroll
258+
  for j, k in pairs(weapons) do
259-
KillButton.Name = "KillButton"
259+
260-
KillButton.BackgroundTransparency = 1
260+
261-
KillButton.BorderSizePixel = 0
261+
262-
KillButton.Position = UDim2.new(0, 5, 0, 125)
262+
263-
KillButton.Size = UDim2.new(0, 85, 0, 35)
263+
264-
KillButton.Font = "SourceSansBold"
264+
265-
KillButton.TextColor3 = Color3.new(255, 255, 255)
265+
266-
KillButton.Text = "Kill Aura"
266+
-- Melee Function
267-
KillButton.TextSize = 23
267+
melee.MouseButton1Down:connect(function()
268-
KillButton.Style = "RobloxRoundButton"
268+
local weapons = {"Crude Knife", "Sharpened stick", "Extendo mirror"}
269-
KillButton.MouseButton1Down:connect(function()
269+
  for i, v in pairs(game.ReplicatedStorage.Tools:GetChildren()) do
270-
WeaponsPage.Visible = false
270+
  for j, k in pairs(weapons) do
271-
TeleportPage.Visible = false
271+
272-
DoorPage.Visible = false
272+
  v:Clone().Parent = game.Players.LocalPlayer.Backpack
273-
KillAuraPage.Visible = true
273+
274-
CarTelePage.Visible = false
274+
275-
WelcomePage.Active = false
275+
276-
WelcomePage.Visible = false
276+
277
278
-- Btools Function
279-
CarButton.Parent = Scroll
279+
btools.MouseButton1Down:connect(function()
280-
CarButton.Name = "CarButton"
280+
  Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 2
281-
CarButton.BackgroundTransparency = 1
281+
  Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 3
282-
CarButton.BorderSizePixel = 0
282+
  Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 4
283-
CarButton.Position = UDim2.new(0, 5, 0, 165)
283+
  loadstring(game:GetObjects('rbxassetid://552440069')[1].Source)()
284-
CarButton.Size = UDim2.new(0, 85, 0, 35)
284+
285-
CarButton.Font = "SourceSansBold"
285+
286-
CarButton.TextColor3 = Color3.new(255, 255, 255)
286+
-- Escape Function
287-
CarButton.Text = "Vehicles"
287+
escape.MouseButton1Down:connect(function()
288-
CarButton.TextSize = 23
288+
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(283, 72, 2213)
289-
CarButton.Style = "RobloxRoundButton"
289+
290-
CarButton.MouseButton1Down:connect(function()
290+
291-
WeaponsPage.Visible = false
291+
-- Kill Aura Function
292-
TeleportPage.Visible = false
292+
killaura.MouseButton1Down:connect(function()
293-
DoorPage.Visible = false
293+
294-
KillAuraPage.Visible = false
294+
295-
CarTelePage.Visible = true
295+
296-
WelcomePage.Active = false
296+
297-
WelcomePage.Visible = false
297+
298
  end
299
  end
300-
-- Welcome Page Contents
300+
301
  end
302-
Welcome.Parent = WelcomePage
302+
303-
Welcome.Name = "Welcome"
303+
304-
Welcome.BackgroundTransparency = 1
304+
-- Arrest Function
305-
Welcome.BorderSizePixel = 0
305+
   local mouse = game.Players.LocalPlayer:GetMouse()
306-
Welcome.Position = UDim2.new(0, 0, 0, 0)
306+
   local arrestEvent = game.Workspace.Remote.arrest
307-
Welcome.Size = UDim2.new(0, 180, 0, 35)
307+
   mouse.Button1Down:connect(function()
308-
Welcome.Font = "SourceSansBold"
308+
   local obj = mouse.Target
309-
Welcome.TextColor3 = Color3.new(255, 255, 255)
309+
   local response = arrestEvent:InvokeServer(obj)
310-
Welcome.Text = "Welcome!"
310+
   end)
311-
Welcome.TextSize = 38
311+
312
-- WalkSpeed Increase
313-
Credits.Parent = WelcomePage
313+
speedplus.MouseButton1Down:connect(function()
314-
Credits.Name = "Credits"
314+
p.Character.Humanoid.WalkSpeed = p.Character.Humanoid.WalkSpeed + 10
315-
Credits.BackgroundTransparency = 1
315+
316-
Credits.BorderSizePixel = 0
316+
317-
Credits.Position = UDim2.new(0, 0, 0, 35)
317+
-- WalkSpeed Decrease
318-
Credits.Size = UDim2.new(0, 180, 0, 25)
318+
speedminus.MouseButton1Down:connect(function()
319-
Credits.Font = "SourceSansBold"
319+
p.Character.Humanoid.WalkSpeed = p.Character.Humanoid.WalkSpeed - 10
320-
Credits.TextColor3 = Color3.new(170/255, 0/255, 0/255)
320+
321-
Credits.Text = "Credits to all creators!"
321+
322-
Credits.TextSize = 18
322+
-- JumpPower Increase
323
jumpplus.MouseButton1Down:connect(function()
324-
Credit2.Parent = WelcomePage
324+
p.Character.Humanoid.JumpPower = p.Character.Humanoid.JumpPower + 10
325-
Credit2.Name = "Credit2"
325+
326-
Credit2.BackgroundTransparency = 1
326+
327-
Credit2.BorderSizePixel = 0
327+
-- JumpPower Decrease
328-
Credit2.Position = UDim2.new(0, 0, 0, 185)
328+
jumpminus.MouseButton1Down:connect(function()
329-
Credit2.Size = UDim2.new(0, 135, 0, 35)
329+
p.Character.Humanoid.JumpPower = p.Character.Humanoid.JumpPower - 10
330-
Credit2.Font = "SourceSansBold"
330+
331-
Credit2.TextColor3 = Color3.new(0, 255, 0)
331+
332-
Credit2.Text = "UI Created By"
332+
-- Seden
333-
Credit2.TextSize = 28
333+
sedan.MouseButton1Down:connect(function()
334
local Cars = {"Sedan"}
335-
TxtWall.Parent = WelcomePage
335+
336-
TxtWall.Name = "TxtWall"
336+
337-
TxtWall.BackgroundTransparency = 1
337+
338-
TxtWall.BorderSizePixel = 0
338+
339-
TxtWall.Position = UDim2.new(0, 0, 0, 65)
339+
340-
TxtWall.Size = UDim2.new(0, 180, 0, 120)
340+
341-
TxtWall.Font = "SourceSansBold"
341+
  elseif not v.Name == k then
342-
TxtWall.TextColor3 = Color3.new(255, 255, 255)
342+
sedan.Text = 'No Sedan Founded yet !'
343-
TxtWall.Text = "I made this GUI because I saw the original GUI, which looked like absolute shit."
343+
wait(2)
344-
TxtWall.TextSize = 24
344+
sedan.Text = 'Teleport Seden [If got]'
345-
TxtWall.TextWrapped = true
345+
346
  end
347-
CredPic.Parent = Credit2
347+
348-
CredPic.Name = "CredPic"
348+
349-
CredPic.BackgroundTransparency = 1
349+
350-
CredPic.BorderSizePixel = 0
350+
-- Squad
351-
CredPic.Position = UDim2.new(0, 125, 0, -5)
351+
squad.MouseButton1Down:connect(function()
352-
CredPic.Size = UDim2.new(0, 55, 0, 50)
352+
353-
CredPic.Image = "rbxassetid://643508583"
353+
354
  for j, k in pairs(Cars) do
355-
-- Weapons Page Contents
355+
356
  v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
357-
WepTut.BackgroundTransparency = 1
357+
358-
WepTut.Size = UDim2.new(0, 180, 0, 35)
358+
359-
WepTut.Font = "SourceSansBold"
359+
  elseif not v.Name == k then
360-
WepTut.Text = "Tutorial"
360+
squad.Text = 'No Squad Founded yet !'
361-
WepTut.TextColor3 = Color3.new(1, 1, 1)
361+
wait(2)
362-
WepTut.TextSize = 28
362+
squad.Text = 'Teleport Squad [If got]'
363-
WepTut.Parent = WeaponsPage
363+
364
  end
365-
WepTxtWall.BackgroundTransparency = 1
365+
366-
WepTxtWall.Position = UDim2.new(0, 0, 0, 35)
366+
367-
WepTxtWall.Size = UDim2.new(0, 180, 0, 75)
367+
368-
WepTxtWall.Font = Enum.Font.SourceSansBold
368+
-- Bypass Taser , Arrest
369-
WepTxtWall.Text = "Click on the guns that you want to appear. If you're new to this, click on the weapon to equip it."
369+
bypass.MouseButton1Down:connect(function()
370-
WepTxtWall.TextColor3 = Color3.new(1, 1, 1)
370+
game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
371-
WepTxtWall.TextWrapped = true
371+
   game.Players.LocalPlayer.CharacterAdded:connect(function()
372-
WepTxtWall.TextSize = 18
372+
   game.Workspace:WaitForChild(game.Players.LocalPlayer.Name)
373-
WepTxtWall.Parent = WepTut
373+
   game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
374-
WepTutSep.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
374+
   end)
375-
WepTutSep.BorderSizePixel = 0
375+
   local message = Instance.new("Message",game.Workspace)
376-
WepTutSep.Position = UDim2.new(0, 15, 0, 115)
376+
   message.Text = 'Thanks for brack1472 release this script !'
377-
WepTutSep.Size = UDim2.new(0, 150, 0, 1)
377+
   wait(5)
378-
WepTutSep.Parent = WeaponsPage
378+
   message:Destroy() 
379-
    
379+
380-
WepButt1.Active = true
380+
381-
WepButt1.BackgroundColor3 = Color3.new(0, 0.411765, 0.603922)
381+
-- Disable Bypass Taser , Arrest
382-
WepButt1.Position = UDim2.new(0, 5, 0, 125)
382+
db.MouseButton1Down:connect(function()
383-
WepButt1.Selectable = true
383+
game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = false
384-
WepButt1.Size = UDim2.new(0, 80, 0, 35)
384+
   game.Players.LocalPlayer.CharacterAdded:connect(function()
385-
WepButt1.Font = "SourceSansBold"
385+
   game.Workspace:WaitForChild(game.Players.LocalPlayer.Name)
386-
WepButt1.Text = "AK-47"
386+
   game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = false
387-
WepButt1.TextColor3 = Color3.new(1, 1, 1)
387+
   end)
388-
WepButt1.TextSize = 18
388+
389-
WepButt1.Parent = WeaponsPage
389+
390-
WepButt1.MouseButton1Down:connect(function()
390+
-- Get Tools On the Floor
391-
local AK47 = {"AK-47"}
391+
floor.MouseButton1Down:connect(function()
392
  for i, v in pairs(game.Workspace["Prison_ITEMS"].single:GetChildren()) do
393-
  for j, k in pairs(AK47) do
393+
394
  end
395
end)