Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made By BlowTorch702
- -- Instances:
- local ScreenGui2 = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local BlowTorch702 = Instance.new("TextLabel")
- local NeutralButton = Instance.new("TextButton")
- local InmateButton = Instance.new("TextButton")
- local GuardButton = Instance.new("TextButton")
- local CriminalButton = Instance.new("TextButton")
- --Properties:
- ScreenGui2.Name = "ScreenGui2"
- ScreenGui2.Parent = game.CoreGui
- ScreenGui2.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui2
- Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BorderColor3 = Color3.fromRGB(170, 0, 0)
- Frame.Position = UDim2.new(0.334638566, 0, 0.291897982, 0)
- Frame.Size = UDim2.new(0, 296, 0, 133)
- Title.Name = "Title"
- Title.Parent = Frame
- Title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Title.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Title.Position = UDim2.new(0.0937392712, 0, 0.0211801212, 0)
- Title.Size = UDim2.new(0, 239, 0, 27)
- Title.Font = Enum.Font.SciFi
- Title.Text = "Prison Life Hitbox Expander"
- Title.TextColor3 = Color3.fromRGB(170, 0, 0)
- Title.TextSize = 20.000
- BlowTorch702.Name = "BlowTorch702"
- BlowTorch702.Parent = Frame
- BlowTorch702.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- BlowTorch702.BorderColor3 = Color3.fromRGB(0, 0, 0)
- BlowTorch702.Position = UDim2.new(0.707877159, 0, 0.77777, 0)
- BlowTorch702.Size = UDim2.new(0, 79, 0, 20)
- BlowTorch702.Font = Enum.Font.SciFi
- BlowTorch702.Text = "BlowTorch702"
- BlowTorch702.TextColor3 = Color3.fromRGB(170, 0, 0)
- BlowTorch702.TextSize = 12.000
- NeutralButton.Name = "NeutralButton"
- NeutralButton.Parent = Frame
- NeutralButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- NeutralButton.BorderColor3 = Color3.fromRGB(150, 150, 150)
- NeutralButton.Position = UDim2.new(0.529771447, 0, 0.634657502, 0)
- NeutralButton.Size = UDim2.new(0, 104, 0, 22)
- NeutralButton.Font = Enum.Font.SciFi
- NeutralButton.Text = "Neutral"
- NeutralButton.TextColor3 = Color3.fromRGB(150, 150, 150)
- NeutralButton.TextSize = 20.000
- NeutralButton.MouseButton1Down:connect(function()
- _G.HeadSize = 6
- _G.Disabled = true
- _G.Reset = true
- game:GetService('RunService').RenderStepped:connect(function()
- if _G.Disabled then
- for i,v in pairs(game.Teams["Neutral"]:GetPlayers()) do
- if v.Name ~= game:GetService('Players').LocalPlayer.Name then
- pcall(function()
- v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
- v.Character.HumanoidRootPart.Transparency = 0.9
- v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Grey")
- v.Character.HumanoidRootPart.Material = "Neon"
- v.Character.HumanoidRootPart.CanCollide = false
- end)
- if _G.Reset then
- if v.Character.Humanoid.Health == 0 then
- v.Character.HumanoidRootPart.Size = Vector3.new(1,1,1)
- end
- end
- end
- end
- end
- end)
- end)
- InmateButton.Name = "InmateButton"
- InmateButton.Parent = Frame
- InmateButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- InmateButton.BorderColor3 = Color3.fromRGB(255, 85, 0)
- InmateButton.Position = UDim2.new(0.529771447, 0, 0.296158016, 0)
- InmateButton.Size = UDim2.new(0, 104, 0, 22)
- InmateButton.Font = Enum.Font.SciFi
- InmateButton.Text = "Inmates"
- InmateButton.TextColor3 = Color3.fromRGB(255, 85, 0)
- InmateButton.TextSize = 20.000
- InmateButton.MouseButton1Down:connect(function()
- _G.HeadSize = 6
- _G.Disabled = true
- _G.Reset = true
- game:GetService('RunService').RenderStepped:connect(function()
- if _G.Disabled then
- for i,v in pairs(game.Teams["Inmates"]:GetPlayers()) do
- if v.Name ~= game:GetService('Players').LocalPlayer.Name then
- pcall(function()
- v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
- v.Character.HumanoidRootPart.Transparency = 0.9
- v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Deep orange")
- v.Character.HumanoidRootPart.Material = "Neon"
- v.Character.HumanoidRootPart.CanCollide = false
- end)
- if _G.Reset then
- if v.Character.Humanoid.Health == 0 then
- v.Character.HumanoidRootPart.Size = Vector3.new(1,1,1)
- end
- end
- end
- end
- end
- end)
- end)
- GuardButton.Name = "GuardButton"
- GuardButton.Parent = Frame
- GuardButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- GuardButton.BorderColor3 = Color3.fromRGB(0, 0, 255)
- GuardButton.Position = UDim2.new(0.0905822217, 0, 0.298656613, 0)
- GuardButton.Size = UDim2.new(0, 104, 0, 22)
- GuardButton.Font = Enum.Font.SciFi
- GuardButton.Text = "Guards"
- GuardButton.TextColor3 = Color3.fromRGB(0, 0, 255)
- GuardButton.TextSize = 20.000
- GuardButton.MouseButton1Down:connect(function()
- _G.HeadSize = 6
- _G.Disabled = true
- _G.Reset = true
- game:GetService('RunService').RenderStepped:connect(function()
- if _G.Disabled then
- for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
- if v.Name ~= game:GetService('Players').LocalPlayer.Name then
- pcall(function()
- v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
- v.Character.HumanoidRootPart.Transparency = 0.9
- v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
- v.Character.HumanoidRootPart.Material = "Neon"
- v.Character.HumanoidRootPart.CanCollide = false
- end)
- if _G.Reset then
- if v.Character.Humanoid.Health == 0 then
- v.Character.HumanoidRootPart.Size = Vector3.new(1,1,1)
- end
- end
- end
- end
- end
- end)
- end)
- CriminalButton.Name = "CriminalButton"
- CriminalButton.Parent = Frame
- CriminalButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- CriminalButton.BorderColor3 = Color3.fromRGB(170, 0, 0)
- CriminalButton.Position = UDim2.new(0.0905822217, 0, 0.637681484, 0)
- CriminalButton.Size = UDim2.new(0, 104, 0, 22)
- CriminalButton.Font = Enum.Font.SciFi
- CriminalButton.Text = "Criminals"
- CriminalButton.TextColor3 = Color3.fromRGB(170, 0, 0)
- CriminalButton.TextSize = 20.000
- CriminalButton.MouseButton1Down:connect(function()
- _G.HeadSize = 6
- _G.Disabled = true
- _G.Reset = true
- game:GetService('RunService').RenderStepped:connect(function()
- if _G.Disabled then
- for i,v in pairs(game.Teams["Criminals"]:GetPlayers()) do
- if v.Name ~= game:GetService('Players').LocalPlayer.Name then
- pcall(function()
- v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
- v.Character.HumanoidRootPart.Transparency = 0.9
- v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really red")
- v.Character.HumanoidRootPart.Material = "Neon"
- v.Character.HumanoidRootPart.CanCollide = false
- end)
- if _G.Reset then
- if v.Character.Humanoid.Health == 0 then
- v.Character.HumanoidRootPart.Size = Vector3.new(1,1,1)
- end
- end
- end
- end
- end
- end)
- end)
- -- Scripts:
- local function EHVTJZM_fake_script() -- Frame.Open/Close Script
- local script = Instance.new('LocalScript', Frame)
- local Plr = game.Players.LocalPlayer
- Plr:GetMouse().KeyDown:Connect(function(K)
- if K == "=" then
- script.Parent.Visible = not script.Parent.Visible
- end
- end)
- end
- coroutine.wrap(EHVTJZM_fake_script)()
- local function DCAGB_fake_script() -- ScreenGui2.Drag Script
- local script = Instance.new('LocalScript', ScreenGui2)
- Frame = script.Parent.Frame
- Frame.Draggable = true
- Frame.Active = true
- Frame.Selectable = true
- end
- coroutine.wrap(DCAGB_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement