Advertisement
BlowTorch702

Roblox Prison Life Hitbox Expander

Jan 4th, 2023
4,207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.41 KB | None | 0 0
  1. -- Made By BlowTorch702
  2.  
  3. -- Instances:
  4.  
  5. local ScreenGui2 = Instance.new("ScreenGui")
  6. local Frame = Instance.new("Frame")
  7. local Title = Instance.new("TextLabel")
  8. local BlowTorch702 = Instance.new("TextLabel")
  9. local NeutralButton = Instance.new("TextButton")
  10. local InmateButton = Instance.new("TextButton")
  11. local GuardButton = Instance.new("TextButton")
  12. local CriminalButton = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui2.Name = "ScreenGui2"
  17. ScreenGui2.Parent = game.CoreGui
  18. ScreenGui2.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. Frame.Parent = ScreenGui2
  21. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  22. Frame.BorderColor3 = Color3.fromRGB(170, 0, 0)
  23. Frame.Position = UDim2.new(0.334638566, 0, 0.291897982, 0)
  24. Frame.Size = UDim2.new(0, 296, 0, 133)
  25.  
  26. Title.Name = "Title"
  27. Title.Parent = Frame
  28. Title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  29. Title.BorderColor3 = Color3.fromRGB(0, 0, 0)
  30. Title.Position = UDim2.new(0.0937392712, 0, 0.0211801212, 0)
  31. Title.Size = UDim2.new(0, 239, 0, 27)
  32. Title.Font = Enum.Font.SciFi
  33. Title.Text = "Prison Life Hitbox Expander"
  34. Title.TextColor3 = Color3.fromRGB(170, 0, 0)
  35. Title.TextSize = 20.000
  36.  
  37. BlowTorch702.Name = "BlowTorch702"
  38. BlowTorch702.Parent = Frame
  39. BlowTorch702.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  40. BlowTorch702.BorderColor3 = Color3.fromRGB(0, 0, 0)
  41. BlowTorch702.Position = UDim2.new(0.707877159, 0, 0.77777, 0)
  42. BlowTorch702.Size = UDim2.new(0, 79, 0, 20)
  43. BlowTorch702.Font = Enum.Font.SciFi
  44. BlowTorch702.Text = "BlowTorch702"
  45. BlowTorch702.TextColor3 = Color3.fromRGB(170, 0, 0)
  46. BlowTorch702.TextSize = 12.000
  47.  
  48. NeutralButton.Name = "NeutralButton"
  49. NeutralButton.Parent = Frame
  50. NeutralButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  51. NeutralButton.BorderColor3 = Color3.fromRGB(150, 150, 150)
  52. NeutralButton.Position = UDim2.new(0.529771447, 0, 0.634657502, 0)
  53. NeutralButton.Size = UDim2.new(0, 104, 0, 22)
  54. NeutralButton.Font = Enum.Font.SciFi
  55. NeutralButton.Text = "Neutral"
  56. NeutralButton.TextColor3 = Color3.fromRGB(150, 150, 150)
  57. NeutralButton.TextSize = 20.000
  58. NeutralButton.MouseButton1Down:connect(function()
  59.     _G.HeadSize = 6
  60.     _G.Disabled = true
  61.     _G.Reset = true
  62.  
  63.     game:GetService('RunService').RenderStepped:connect(function()
  64.         if _G.Disabled then
  65.             for i,v in pairs(game.Teams["Neutral"]:GetPlayers()) do
  66.                 if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  67.                     pcall(function()
  68.                         v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  69.                         v.Character.HumanoidRootPart.Transparency = 0.9
  70.                         v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Grey")
  71.                         v.Character.HumanoidRootPart.Material = "Neon"
  72.                         v.Character.HumanoidRootPart.CanCollide = false
  73.                     end)
  74.                     if _G.Reset then
  75.                         if v.Character.Humanoid.Health == 0 then
  76.                             v.Character.HumanoidRootPart.Size = Vector3.new(1,1,1)
  77.                         end
  78.                     end
  79.                 end
  80.             end
  81.         end
  82.     end)
  83. end)
  84.  
  85. InmateButton.Name = "InmateButton"
  86. InmateButton.Parent = Frame
  87. InmateButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  88. InmateButton.BorderColor3 = Color3.fromRGB(255, 85, 0)
  89. InmateButton.Position = UDim2.new(0.529771447, 0, 0.296158016, 0)
  90. InmateButton.Size = UDim2.new(0, 104, 0, 22)
  91. InmateButton.Font = Enum.Font.SciFi
  92. InmateButton.Text = "Inmates"
  93. InmateButton.TextColor3 = Color3.fromRGB(255, 85, 0)
  94. InmateButton.TextSize = 20.000
  95. InmateButton.MouseButton1Down:connect(function()
  96.     _G.HeadSize = 6
  97.     _G.Disabled = true
  98.     _G.Reset = true
  99.  
  100.     game:GetService('RunService').RenderStepped:connect(function()
  101.         if _G.Disabled then
  102.             for i,v in pairs(game.Teams["Inmates"]:GetPlayers()) do
  103.                 if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  104.                     pcall(function()
  105.                         v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  106.                         v.Character.HumanoidRootPart.Transparency = 0.9
  107.                         v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Deep orange")
  108.                         v.Character.HumanoidRootPart.Material = "Neon"
  109.                         v.Character.HumanoidRootPart.CanCollide = false
  110.                     end)
  111.                     if _G.Reset then
  112.                         if v.Character.Humanoid.Health == 0 then
  113.                             v.Character.HumanoidRootPart.Size = Vector3.new(1,1,1)
  114.                         end
  115.                     end
  116.                 end
  117.             end
  118.         end
  119.     end)
  120. end)
  121.  
  122. GuardButton.Name = "GuardButton"
  123. GuardButton.Parent = Frame
  124. GuardButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  125. GuardButton.BorderColor3 = Color3.fromRGB(0, 0, 255)
  126. GuardButton.Position = UDim2.new(0.0905822217, 0, 0.298656613, 0)
  127. GuardButton.Size = UDim2.new(0, 104, 0, 22)
  128. GuardButton.Font = Enum.Font.SciFi
  129. GuardButton.Text = "Guards"
  130. GuardButton.TextColor3 = Color3.fromRGB(0, 0, 255)
  131. GuardButton.TextSize = 20.000
  132. GuardButton.MouseButton1Down:connect(function()
  133.     _G.HeadSize = 6
  134.     _G.Disabled = true
  135.     _G.Reset = true
  136.  
  137.     game:GetService('RunService').RenderStepped:connect(function()
  138.         if _G.Disabled then
  139.             for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
  140.                 if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  141.                     pcall(function()
  142.                         v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  143.                         v.Character.HumanoidRootPart.Transparency = 0.9
  144.                         v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  145.                         v.Character.HumanoidRootPart.Material = "Neon"
  146.                         v.Character.HumanoidRootPart.CanCollide = false
  147.                     end)
  148.                     if _G.Reset then
  149.                         if v.Character.Humanoid.Health == 0 then
  150.                             v.Character.HumanoidRootPart.Size = Vector3.new(1,1,1)
  151.                         end
  152.                     end
  153.                 end
  154.             end
  155.         end
  156.     end)
  157. end)
  158.  
  159. CriminalButton.Name = "CriminalButton"
  160. CriminalButton.Parent = Frame
  161. CriminalButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  162. CriminalButton.BorderColor3 = Color3.fromRGB(170, 0, 0)
  163. CriminalButton.Position = UDim2.new(0.0905822217, 0, 0.637681484, 0)
  164. CriminalButton.Size = UDim2.new(0, 104, 0, 22)
  165. CriminalButton.Font = Enum.Font.SciFi
  166. CriminalButton.Text = "Criminals"
  167. CriminalButton.TextColor3 = Color3.fromRGB(170, 0, 0)
  168. CriminalButton.TextSize = 20.000
  169. CriminalButton.MouseButton1Down:connect(function()
  170.     _G.HeadSize = 6
  171.     _G.Disabled = true
  172.     _G.Reset = true
  173.  
  174.     game:GetService('RunService').RenderStepped:connect(function()
  175.         if _G.Disabled then
  176.             for i,v in pairs(game.Teams["Criminals"]:GetPlayers()) do
  177.                 if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  178.                     pcall(function()
  179.                         v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  180.                         v.Character.HumanoidRootPart.Transparency = 0.9
  181.                         v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really red")
  182.                         v.Character.HumanoidRootPart.Material = "Neon"
  183.                         v.Character.HumanoidRootPart.CanCollide = false
  184.                     end)
  185.                     if _G.Reset then
  186.                         if v.Character.Humanoid.Health == 0 then
  187.                             v.Character.HumanoidRootPart.Size = Vector3.new(1,1,1)
  188.                         end
  189.                     end
  190.                 end
  191.             end
  192.         end
  193.     end)
  194. end)
  195.  
  196. -- Scripts:
  197.  
  198. local function EHVTJZM_fake_script() -- Frame.Open/Close Script
  199.     local script = Instance.new('LocalScript', Frame)
  200.  
  201.     local Plr = game.Players.LocalPlayer
  202.    
  203.     Plr:GetMouse().KeyDown:Connect(function(K)
  204.         if K == "=" then
  205.             script.Parent.Visible = not script.Parent.Visible
  206.         end
  207.     end)
  208. end
  209. coroutine.wrap(EHVTJZM_fake_script)()
  210. local function DCAGB_fake_script() -- ScreenGui2.Drag Script
  211.     local script = Instance.new('LocalScript', ScreenGui2)
  212.  
  213.     Frame = script.Parent.Frame
  214.     Frame.Draggable = true
  215.     Frame.Active = true
  216.     Frame.Selectable = true
  217. end
  218. coroutine.wrap(DCAGB_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement