Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- RedBoy
- local REDJBGUI = Instance.new("ScreenGui")
- local Open = Instance.new("TextButton")
- local Main = Instance.new("Frame")
- local Guns = Instance.new("Frame")
- local GUN = Instance.new("TextLabel")
- local Shotgun = Instance.new("TextButton")
- local Pistol = Instance.new("TextButton")
- local AK47 = Instance.new("TextButton")
- local M4A4 = Instance.new("TextButton")
- local Flashlight = Instance.new("TextButton")
- local TPS = Instance.new("Frame")
- local Teleports = Instance.new("TextLabel")
- local BankFront = Instance.new("TextButton")
- local BankVault = Instance.new("TextButton")
- local JewelryTop = Instance.new("TextButton")
- local JewelryIn = Instance.new("TextButton")
- local DonutShop = Instance.new("TextButton")
- local NextPage = Instance.new("TextButton")
- local OTH = Instance.new("Frame")
- local Others = Instance.new("TextLabel")
- local AutoArrest = Instance.new("TextButton")
- local Gravity = Instance.new("TextButton")
- local NoDoors = Instance.new("TextButton")
- local Cellbars = Instance.new("TextButton")
- local TPS2 = Instance.new("Frame")
- local Teleports_2 = Instance.new("TextLabel")
- local GasStation = Instance.new("TextButton")
- local Crim1 = Instance.new("TextButton")
- local Crim2 = Instance.new("TextButton")
- local Train = Instance.new("TextButton")
- local PoliceBase = Instance.new("TextButton")
- local LastPage = Instance.new("TextButton")
- local Credit = Instance.new("Frame")
- local Jb = Instance.new("TextLabel")
- local DIS = Instance.new("TextLabel")
- local Close = Instance.new("TextButton")
- -- Properties
- REDJBGUI.Name = "REDJBGUI"
- REDJBGUI.Parent = game.CoreGui
- Open.Name = "dick"
- Open.Parent = REDJBGUI
- Open.BackgroundColor3 = Color3.new(1, 0, 0)
- Open.Position = UDim2.new(0, 0, 0.699999988, 0)
- Open.Size = UDim2.new(0, 100, 0, 50)
- Open.Font = Enum.Font.SourceSansBold
- Open.Text = "dick"
- Open.TextColor3 = Color3.new(1, 1, 1)
- Open.TextScaled = true
- Open.TextSize = 14
- Open.TextWrapped = true
- Open.MouseButton1Down:connect(function()
- Open.Visible = false
- Close.Visible = true
- Main.Visible = true
- end)
- Main.Name = "Ass Cheeks"
- Main.Parent = REDJBGUI
- Main.Active = true
- Main.BackgroundColor3 = Color3.new(0, 0, 0)
- Main.Position = UDim2.new(0.200000003, 0, 0.200000003, 0)
- Main.Size = UDim2.new(0, 500, 0, 350)
- Main.Visible = false
- Main.Draggable = true
- Main.Style = Enum.FrameStyle.DropShadow
- Guns.Name = "Guns"
- Guns.Parent = Main
- Guns.BackgroundColor3 = Color3.new(1, 0, 0)
- Guns.Size = UDim2.new(0, 150, 0, 330)
- Guns.Style = Enum.FrameStyle.ChatRed
- GUN.Name = "GUN"
- GUN.Parent = Guns
- GUN.BackgroundColor3 = Color3.new(1, 1, 1)
- GUN.BorderColor3 = Color3.new(1, 0, 0)
- GUN.BorderSizePixel = 2
- GUN.Position = UDim2.new(-0.0133333281, 0, -0.0333333351, 0)
- GUN.Size = UDim2.new(0, 120, 0, 50)
- GUN.Font = Enum.Font.SourceSans
- GUN.Text = "Bootie"
- GUN.TextScaled = true
- GUN.TextSize = 14
- GUN.TextWrapped = true
- Shotgun.Name = "Shotgun"
- Shotgun.Parent = Guns
- Shotgun.BackgroundColor3 = Color3.new(0.768628, 1, 0)
- Shotgun.Position = UDim2.new(-0.0133333337, 0, 0.175757587, 0)
- Shotgun.Size = UDim2.new(0, 120, 0, 30)
- Shotgun.Font = Enum.Font.ArialBold
- Shotgun.Text = "Shotgun"
- Shotgun.TextScaled = true
- Shotgun.TextSize = 14
- Shotgun.TextWrapped = true
- Shotgun.MouseButton1Down:connect(function()
- local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
- a = Instance.new("Part", workspace)
- a.Anchored = true
- a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
- a.CanCollide = false
- for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
- if v.Name == "Station" then
- for a, b in pairs(v:GetChildren()) do
- if b:IsA("StringValue") then
- if b.Value == "Shotgun" then
- v.CFrame = CFrame.new(hit)
- end
- end
- end
- end
- end
- end)
- Pistol.Name = "Pistol"
- Pistol.Parent = Guns
- Pistol.BackgroundColor3 = Color3.new(0.768628, 1, 0)
- Pistol.Position = UDim2.new(-0.0133333337, 0, 0.321212113, 0)
- Pistol.Size = UDim2.new(0, 120, 0, 30)
- Pistol.Font = Enum.Font.ArialBold
- Pistol.Text = "Pistol"
- Pistol.TextScaled = true
- Pistol.TextSize = 14
- Pistol.TextWrapped = true
- Pistol.MouseButton1Down:connect(function()
- local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
- a = Instance.new("Part", workspace)
- a.Anchored = true
- a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
- a.CanCollide = false
- for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
- if v.Name == "Station" then
- for a, b in pairs(v:GetChildren()) do
- if b:IsA("StringValue") then
- if b.Value == "Pistol" then
- v.CFrame = CFrame.new(hit)
- end
- end
- end
- end
- end
- end)
- AK47.Name = "AK47"
- AK47.Parent = Guns
- AK47.BackgroundColor3 = Color3.new(0.768628, 1, 0)
- AK47.Position = UDim2.new(-0.0133333337, 0, 0.466666669, 0)
- AK47.Size = UDim2.new(0, 120, 0, 30)
- AK47.Font = Enum.Font.ArialBold
- AK47.Text = "AK47"
- AK47.TextScaled = true
- AK47.TextSize = 14
- AK47.TextWrapped = true
- AK47.MouseButton1Down:connect(function()
- local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
- a = Instance.new("Part", workspace)
- a.Anchored = true
- a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
- a.CanCollide = false
- for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
- if v.Name == "ShootingRange" then
- for a, b in pairs(v:GetChildren()) do
- if b:IsA("StringValue") then
- if b.Value == "AK47" then
- v.CFrame = CFrame.new(hit)
- end
- end
- end
- end
- end
- end)
- M4A4.Name = "M4A4"
- M4A4.Parent = Guns
- M4A4.BackgroundColor3 = Color3.new(0.768628, 1, 0)
- M4A4.Position = UDim2.new(-0.0133333337, 0, 0.609090924, 0)
- M4A4.Size = UDim2.new(0, 120, 0, 30)
- M4A4.Font = Enum.Font.ArialBold
- M4A4.Text = "M4A4"
- M4A4.TextScaled = true
- M4A4.TextSize = 14
- M4A4.TextWrapped = true
- M4A4.MouseButton1Down:connect(function()
- local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
- a = Instance.new("Part", workspace)
- a.Anchored = true
- a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
- a.CanCollide = false
- for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
- if v.Name == "Station" then
- for a, b in pairs(v:GetChildren()) do
- if b:IsA("StringValue") then
- if b.Value == "RifleSWAT" then
- v.CFrame = CFrame.new(hit)
- end
- end
- end
- end
- end
- end)
- Flashlight.Name = "Flashlight"
- Flashlight.Parent = Guns
- Flashlight.BackgroundColor3 = Color3.new(0.768628, 1, 0)
- Flashlight.Position = UDim2.new(-0.0133333337, 0, 0.75454545, 0)
- Flashlight.Size = UDim2.new(0, 120, 0, 30)
- Flashlight.Font = Enum.Font.ArialBold
- Flashlight.Text = "Flashlight"
- Flashlight.TextScaled = true
- Flashlight.TextSize = 14
- Flashlight.TextWrapped = true
- Flashlight.MouseButton1Down:connect(function()
- local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
- a = Instance.new("Part", workspace)
- a.Anchored = true
- a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
- a.CanCollide = false
- for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
- if v.Name == "Station" then
- for a, b in pairs(v:GetChildren()) do
- if b:IsA("StringValue") then
- if b.Value == "Flashlight" then
- v.CFrame = CFrame.new(hit)
- end
- end
- end
- end
- end
- end)
- TPS.Name = "TPS"
- TPS.Parent = Main
- TPS.BackgroundColor3 = Color3.new(1, 0, 0)
- TPS.Position = UDim2.new(0.34799999, 0, 0, 0)
- TPS.Size = UDim2.new(0, 150, 0, 330)
- TPS.Style = Enum.FrameStyle.ChatRed
- Teleports.Name = "Teleports"
- Teleports.Parent = TPS
- Teleports.BackgroundColor3 = Color3.new(1, 1, 1)
- Teleports.BorderColor3 = Color3.new(1, 0, 0)
- Teleports.BorderSizePixel = 2
- Teleports.Position = UDim2.new(-0.0133333281, 0, -0.0333333351, 0)
- Teleports.Size = UDim2.new(0, 120, 0, 50)
- Teleports.SizeConstraint = Enum.SizeConstraint.RelativeYY
- Teleports.Font = Enum.Font.SourceSans
- Teleports.Text = "Teleports"
- Teleports.TextScaled = true
- Teleports.TextSize = 14
- Teleports.TextWrapped = true
- BankFront.Name = "BankFront"
- BankFront.Parent = TPS
- BankFront.BackgroundColor3 = Color3.new(1, 0, 0)
- BankFront.Position = UDim2.new(-0.0133333337, 0, 0.196969703, 0)
- BankFront.Size = UDim2.new(0, 120, 0, 30)
- BankFront.Font = Enum.Font.Fantasy
- BankFront.Text = "BankFront"
- BankFront.TextScaled = true
- BankFront.TextSize = 14
- BankFront.TextWrapped = true
- BankFront.MouseButton1Down:connect(function()
- for i=1,32 do
- wait(.01)
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147) + Vector3.new(1,0,0)
- end
- end)
- BankVault.Name = "BankVault"
- BankVault.Parent = TPS
- BankVault.BackgroundColor3 = Color3.new(1, 0, 0)
- BankVault.Position = UDim2.new(-0.0133333337, 0, 0.327272773, 0)
- BankVault.Size = UDim2.new(0, 120, 0, 30)
- BankVault.Font = Enum.Font.Fantasy
- BankVault.Text = "BankVault"
- BankVault.TextScaled = true
- BankVault.TextSize = 14
- BankVault.TextWrapped = true
- BankVault.MouseButton1Down:connect(function()
- for i=1,32 do
- wait(.01)
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(18.3854294, 0.765628457, 815.506348) + Vector3.new(1,0,0)
- end
- end)
- JewelryTop.Name = "JewelryTop"
- JewelryTop.Parent = TPS
- JewelryTop.BackgroundColor3 = Color3.new(1, 0, 0)
- JewelryTop.Position = UDim2.new(-0.0133333337, 0, 0.469696969, 0)
- JewelryTop.Size = UDim2.new(0, 120, 0, 30)
- JewelryTop.Font = Enum.Font.Fantasy
- JewelryTop.Text = "JewelryTop"
- JewelryTop.TextScaled = true
- JewelryTop.TextSize = 14
- JewelryTop.TextWrapped = true
- JewelryTop.MouseButton1Down:connect(function()
- for i=1,32 do
- wait(.01)
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175) + Vector3.new(1,0,0)
- end
- end)
- JewelryIn.Name = "JewelryIn"
- JewelryIn.Parent = TPS
- JewelryIn.BackgroundColor3 = Color3.new(1, 0, 0)
- JewelryIn.Position = UDim2.new(-0.0133333337, 0, 0.609090924, 0)
- JewelryIn.Size = UDim2.new(0, 120, 0, 30)
- JewelryIn.Font = Enum.Font.Fantasy
- JewelryIn.Text = "JewelryInside"
- JewelryIn.TextScaled = true
- JewelryIn.TextSize = 14
- JewelryIn.TextWrapped = true
- JewelryIn.MouseButton1Down:connect(function()
- for i=1,32 do
- wait(.01)
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(133.300705, 17.9375954, 1316.42407) + Vector3.new(1,0,0)
- end
- end)
- DonutShop.Name = "DonutShop"
- DonutShop.Parent = TPS
- DonutShop.BackgroundColor3 = Color3.new(1, 0, 0)
- DonutShop.Position = UDim2.new(-0.0133333337, 0, 0.74848485, 0)
- DonutShop.Size = UDim2.new(0, 120, 0, 30)
- DonutShop.Font = Enum.Font.Fantasy
- DonutShop.Text = "DonutShop"
- DonutShop.TextScaled = true
- DonutShop.TextSize = 14
- DonutShop.TextWrapped = true
- DonutShop.MouseButton1Down:connect(function()
- for i=1,32 do
- wait(.01)
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(257.191101, 17.81828869, -1753.11206) + Vector3.new(1,0,0)
- end
- end)
- NextPage.Name = "NextPage"
- NextPage.Parent = TPS
- NextPage.BackgroundColor3 = Color3.new(0.431373, 1, 0)
- NextPage.Position = UDim2.new(-0.0133333337, 0, 0.890909076, 0)
- NextPage.Size = UDim2.new(0, 120, 0, 30)
- NextPage.Font = Enum.Font.SourceSans
- NextPage.Text = "Next Page"
- NextPage.TextScaled = true
- NextPage.TextSize = 14
- NextPage.TextWrapped = true
- NextPage.MouseButton1Down:connect(function()
- TPS.Visible = false
- TPS2.Visible = true
- end)
- OTH.Name = "OTH"
- OTH.Parent = Main
- OTH.BackgroundColor3 = Color3.new(1, 0, 0)
- OTH.Position = UDim2.new(0.68599999, 0, 0, 0)
- OTH.Size = UDim2.new(0, 150, 0, 330)
- OTH.Style = Enum.FrameStyle.ChatRed
- Others.Name = "Others"
- Others.Parent = OTH
- Others.BackgroundColor3 = Color3.new(1, 1, 1)
- Others.BorderColor3 = Color3.new(1, 0, 0)
- Others.BorderSizePixel = 2
- Others.Position = UDim2.new(-0.0133333281, 0, -0.0333333351, 0)
- Others.Size = UDim2.new(0, 120, 0, 50)
- Others.SizeConstraint = Enum.SizeConstraint.RelativeYY
- Others.Font = Enum.Font.SourceSans
- Others.Text = "Others"
- Others.TextScaled = true
- Others.TextSize = 14
- Others.TextWrapped = true
- AutoArrest.Name = "AutoArrest"
- AutoArrest.Parent = OTH
- AutoArrest.BackgroundColor3 = Color3.new(0.0235294, 0.494118, 1)
- AutoArrest.Position = UDim2.new(-0.0133333337, 0, 0.175757572, 0)
- AutoArrest.Size = UDim2.new(0, 120, 0, 30)
- AutoArrest.Font = Enum.Font.Cartoon
- AutoArrest.Text = "Auto Arrest"
- AutoArrest.TextScaled = true
- AutoArrest.TextSize = 14
- AutoArrest.TextWrapped = true
- AutoArrest.MouseButton1Down:connect(function()
- local Player = game.Players.LocalPlayer
- wait(0.5)
- for i,v in pairs(game.Teams.Criminal:GetPlayers()) do
- repeat
- wait()
- Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
- until v.Team.Name ~= "Criminal"
- end
- end)
- Gravity.Name = "Gravity"
- Gravity.Parent = OTH
- Gravity.BackgroundColor3 = Color3.new(0.0235294, 0.494118, 1)
- Gravity.Position = UDim2.new(-0.0133333337, 0, 0.312121212, 0)
- Gravity.Size = UDim2.new(0, 120, 0, 30)
- Gravity.Font = Enum.Font.Cartoon
- Gravity.Text = "Gravity"
- Gravity.TextScaled = true
- Gravity.TextSize = 14
- Gravity.TextWrapped = true
- Gravity.MouseButton1Down:connect(function()
- if Gravity == true then
- Gravity = false
- game.workspace.Gravity = 196.2
- else
- Gravity = true
- game.workspace.Gravity = 45
- end
- end)
- NoDoors.Name = "NoDoors"
- NoDoors.Parent = OTH
- NoDoors.BackgroundColor3 = Color3.new(0.0235294, 0.494118, 1)
- NoDoors.Position = UDim2.new(-0.0133333337, 0, 0.454545438, 0)
- NoDoors.Size = UDim2.new(0, 120, 0, 30)
- NoDoors.Font = Enum.Font.Cartoon
- NoDoors.Text = "RemoveALL"
- NoDoors.TextScaled = true
- NoDoors.TextSize = 14
- NoDoors.TextWrapped = true
- NoDoors.MouseButton1Down:connect(function()
- local banklasers = game:GetService("Workspace").Banks:GetChildren()
- banklasers[1].Lasers:Destroy()
- end)
- NoDoors.MouseButton1Down:connect(function()
- local jewelry = game:GetService("Workspace").Jewelrys:GetChildren()
- for i = 1,4 do
- local xd = jewelry[1].Model.BarbedWire
- xd:Destroy()
- end
- end)
- NoDoors.MouseButton1Down:connect(function()
- for i,v in pairs(workspace.Doors:GetChildren()) do
- v:Destroy()
- end
- end)
- NoDoors.MouseButton1Down:connect(function()
- local banklasers = game:GetService("Workspace").Banks:GetChildren()
- banklasers[1].Door.Model:Destroy()
- end)
- Cellbars.Name = "Cellbars"
- Cellbars.Parent = OTH
- Cellbars.BackgroundColor3 = Color3.new(0.0235294, 0.494118, 1)
- Cellbars.Position = UDim2.new(-0.0133333337, 0, 0.590909064, 0)
- Cellbars.Size = UDim2.new(0, 120, 0, 30)
- Cellbars.Font = Enum.Font.Cartoon
- Cellbars.Text = "CellBars"
- Cellbars.TextScaled = true
- Cellbars.TextSize = 14
- Cellbars.TextWrapped = true
- Cellbars.MouseButton1Down:connect(function()
- game.Workspace.Cells:Remove()
- for i,v in pairs(workspace.Doors:GetChildren()) do
- v:Destroy()
- end
- end)
- TPS2.Name = "TPS2"
- TPS2.Parent = Main
- TPS2.BackgroundColor3 = Color3.new(1, 0, 0)
- TPS2.Position = UDim2.new(0.34799999, 0, 0, 0)
- TPS2.Size = UDim2.new(0, 150, 0, 330)
- TPS2.Visible = false
- TPS2.Style = Enum.FrameStyle.ChatRed
- Teleports_2.Name = "Teleports"
- Teleports_2.Parent = TPS2
- Teleports_2.BackgroundColor3 = Color3.new(1, 1, 1)
- Teleports_2.BorderColor3 = Color3.new(1, 0, 0)
- Teleports_2.BorderSizePixel = 2
- Teleports_2.Position = UDim2.new(-0.0133333281, 0, -0.0333333351, 0)
- Teleports_2.Size = UDim2.new(0, 120, 0, 50)
- Teleports_2.SizeConstraint = Enum.SizeConstraint.RelativeYY
- Teleports_2.Font = Enum.Font.SourceSans
- Teleports_2.Text = "Teleports"
- Teleports_2.TextScaled = true
- Teleports_2.TextSize = 14
- Teleports_2.TextWrapped = true
- GasStation.Name = "GasStation"
- GasStation.Parent = TPS2
- GasStation.BackgroundColor3 = Color3.new(1, 0, 0)
- GasStation.Position = UDim2.new(-0.0133333337, 0, 0.196969703, 0)
- GasStation.Size = UDim2.new(0, 120, 0, 30)
- GasStation.Font = Enum.Font.SourceSans
- GasStation.Text = "GasStation"
- GasStation.TextScaled = true
- GasStation.TextSize = 14
- GasStation.TextWrapped = true
- GasStation.MouseButton1Down:connect(function()
- for i=1,32 do
- wait(.01)
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1586.41101, 17.8481865, 709.37262) + Vector3.new(1,0,0)
- end
- end)
- Crim1.Name = "Crim1"
- Crim1.Parent = TPS2
- Crim1.BackgroundColor3 = Color3.new(1, 0, 0)
- Crim1.Position = UDim2.new(-0.0133333337, 0, 0.327272773, 0)
- Crim1.Size = UDim2.new(0, 120, 0, 30)
- Crim1.Font = Enum.Font.SourceSans
- Crim1.Text = "Criminal Base 1"
- Crim1.TextScaled = true
- Crim1.TextSize = 14
- Crim1.TextWrapped = true
- Crim1.MouseButton1Down:connect(function()
- for i=1,32 do
- wait(.01)
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261) + Vector3.new(1,0,0)
- end
- end)
- Crim2.Name = "Crim2"
- Crim2.Parent = TPS2
- Crim2.BackgroundColor3 = Color3.new(1, 0, 0)
- Crim2.Position = UDim2.new(-0.0133333337, 0, 0.469696969, 0)
- Crim2.Size = UDim2.new(0, 120, 0, 30)
- Crim2.Font = Enum.Font.SourceSans
- Crim2.Text = "Criminal Base 2"
- Crim2.TextScaled = true
- Crim2.TextSize = 14
- Crim2.TextWrapped = true
- Crim2.MouseButton1Down:connect(function()
- for i=1,32 do
- wait(.01)
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1650.80896, 49.863636, -1770.66626) + Vector3.new(1,0,0)
- end
- end)
- Train.Name = "Train"
- Train.Parent = TPS2
- Train.BackgroundColor3 = Color3.new(1, 0, 0)
- Train.Position = UDim2.new(-0.0133333337, 0, 0.609090924, 0)
- Train.Size = UDim2.new(0, 120, 0, 30)
- Train.Font = Enum.Font.SourceSans
- Train.Text = "Train Spawn"
- Train.TextScaled = true
- Train.TextSize = 14
- Train.TextWrapped = true
- Train.MouseButton1Down:connect(function()
- for i=1,32 do
- wait(.01)
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1954.95007, 68.0448606, -603.844116) + Vector3.new(1,0,0)
- end
- end)
- PoliceBase.Name = "PoliceBase"
- PoliceBase.Parent = TPS2
- PoliceBase.BackgroundColor3 = Color3.new(1, 0, 0)
- PoliceBase.Position = UDim2.new(-0.0133333337, 0, 0.74848485, 0)
- PoliceBase.Size = UDim2.new(0, 120, 0, 30)
- PoliceBase.Font = Enum.Font.SourceSans
- PoliceBase.Text = "Police Base"
- PoliceBase.TextScaled = true
- PoliceBase.TextSize = 14
- PoliceBase.TextWrapped = true
- PoliceBase.MouseButton1Down:connect(function()
- for i=1,32 do
- wait(.01)
- game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1136.89868, 17.950058, -1585.59912) + Vector3.new(1,0,0)
- end
- end)
- LastPage.Name = "LastPage"
- LastPage.Parent = TPS2
- LastPage.BackgroundColor3 = Color3.new(0.431373, 1, 0)
- LastPage.Position = UDim2.new(-0.0133333337, 0, 0.890909076, 0)
- LastPage.Size = UDim2.new(0, 120, 0, 30)
- LastPage.Font = Enum.Font.SourceSans
- LastPage.Text = "LastPage"
- LastPage.TextScaled = true
- LastPage.TextSize = 14
- LastPage.TextWrapped = true
- LastPage.MouseButton1Down:connect(function()
- TPS.Visible = true
- TPS2.Visible = false
- end)
- Credit.Name = "Credit"
- Credit.Parent = Main
- Credit.BackgroundColor3 = Color3.new(0.956863, 0.266667, 0.0352941)
- Credit.Position = UDim2.new(0, 0, -0.171428561, 0)
- Credit.Size = UDim2.new(0, 482, 0, 50)
- Credit.Style = Enum.FrameStyle.RobloxRound
- Jb.Name = "Jb"
- Jb.Parent = Credit
- Jb.Active = true
- Jb.BackgroundColor3 = Color3.new(1, 1, 1)
- Jb.BackgroundTransparency = 1
- Jb.Position = UDim2.new(-0.00414937735, 0, 0.049999997, 0)
- Jb.Size = UDim2.new(0, 241, 0, 35)
- Jb.Font = Enum.Font.SourceSans
- Jb.Text = "JAILBREAKGUI"
- Jb.TextColor3 = Color3.new(1, 1, 0)
- Jb.TextScaled = true
- Jb.TextSize = 14
- Jb.TextWrapped = true
- DIS.Name = "DIS"
- DIS.Parent = Credit
- DIS.Active = true
- DIS.BackgroundColor3 = Color3.new(1, 1, 1)
- DIS.BackgroundTransparency = 1
- DIS.Position = UDim2.new(0.46887967, 0, 0.049999997, 0)
- DIS.Size = UDim2.new(0, 241, 0, 35)
- DIS.Font = Enum.Font.SourceSans
- DIS.Text = "Join Our Discord For More Hacks : https://discord.gg/gFKfycn"
- DIS.TextColor3 = Color3.new(1, 1, 0)
- DIS.TextScaled = true
- DIS.TextSize = 14
- DIS.TextWrapped = true
- Close.Name = "Close"
- Close.Parent = REDJBGUI
- Close.BackgroundColor3 = Color3.new(1, 0, 0)
- Close.Position = UDim2.new(0, 0, 0.699999988, 0)
- Close.Size = UDim2.new(0, 100, 0, 50)
- Close.Visible = false
- Close.Font = Enum.Font.SourceSansBold
- Close.Text = "CLOSE"
- Close.TextColor3 = Color3.new(1, 1, 1)
- Close.TextScaled = true
- Close.TextSize = 14
- Close.TextWrapped = true
- Close.MouseButton1Down:connect(function()
- Open.Visible = true
- Close.Visible = false
- Main.Visible = false
- end)
Advertisement
Add Comment
Please, Sign In to add comment