prison life gui

Uploaded On
Script Credit :- cool1542
Features

get shotgun and pistol, for now, ill fix the other stuff later.

Script
--BROUGHT TO YOU BY RobloxScripter.com!--

local ScreenGui = Instance.new("ScreenGui") local main = Instance.new("Frame") local Label = Instance.new("TextLabel") local shotgun = Instance.new("TextButton") local destroycells = Instance.new("TextButton") local secretstick = Instance.new("TextButton") --Properties: ScreenGui.Parent = game.CoreGui ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling main.Name = "main" main.Parent = ScreenGui main.BackgroundColor3 = Color3.fromRGB(74, 74, 74) main.Position = UDim2.new(0.295980483, 0, 0.539822936, 0) main.Size = UDim2.new(0, 350, 0, 156) main.Active = true main.Draggable = true Label.Name = "Label" Label.Parent = main Label.BackgroundColor3 = Color3.fromRGB(54, 54, 54) Label.Size = UDim2.new(0, 350, 0, 31) Label.Font = Enum.Font.SciFi Label.Text = "Prison life gui -- Made by cool1542" Label.TextColor3 = Color3.fromRGB(0, 0, 0) Label.TextSize = 14.000 shotgun.Name = "shotgun" shotgun.Parent = main shotgun.BackgroundColor3 = Color3.fromRGB(121, 121, 121) shotgun.Position = UDim2.new(0, 0, 0.198717952, 0) shotgun.Size = UDim2.new(0, 111, 0, 125) shotgun.Font = Enum.Font.SciFi shotgun.Text = "Give Shoutgun" shotgun.TextColor3 = Color3.fromRGB(0, 0, 0) shotgun.TextSize = 14.000 shotgun.MouseButton1Down:Connect(function() game.Workspace.Prison_ITEMS.giver["Remington 870"].ITEMPICKUP.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame wait (3) game.Workspace.Prison_ITEMS.giver["M9"].ITEMPICKUP.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame end) destroycells.Name = "destroycells" destroycells.Parent = main destroycells.BackgroundColor3 = Color3.fromRGB(121, 121, 121) destroycells.Position = UDim2.new(0.317142844, 0, 0.198717952, 0) destroycells.Size = UDim2.new(0, 127, 0, 125) destroycells.Font = Enum.Font.SciFi destroycells.Text = "Destroy cell section" destroycells.TextColor3 = Color3.fromRGB(0, 0, 0) destroycells.TextSize = 14.000 destroycells.MouseButton1Down:Connect(function() cell_a.Transparency = 1 cell_a.Cancollide = false cell_b.Transparency = 1 cell_b.Cancollide = false local cell_a = game.Workspace.Prison_Cellblock.Cells_B local cell_b = game.Workspace.Prison_Cellblock.Cells_A end) secretstick.Name = "secretstick" secretstick.Parent = main secretstick.BackgroundColor3 = Color3.fromRGB(121, 121, 121) secretstick.Position = UDim2.new(0.679999888, 0, 0.198717952, 0) secretstick.Size = UDim2.new(0, 112, 0, 125) secretstick.Font = Enum.Font.SciFi secretstick.Text = "Give secret mirror" secretstick.TextColor3 = Color3.fromRGB(0, 0, 0) secretstick.TextSize = 14.000 secretstick.MouseButton1Down:Connect(function() local copy = game.ReplicatedStorage.Tools["Extendo mirror"]:Clone() end)