Advertisement
Guest User

Script JailBreak

a guest
Dec 16th, 2018
440
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local Prison = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local Open = Instance.new("TextButton")
  7. local Main = Instance.new("Frame")
  8. local title = Instance.new("TextBox")
  9. local Credits = Instance.new("TextBox")
  10. local Fast = Instance.new("TextButton")
  11. local Guns = Instance.new("TextButton")
  12. local X = Instance.new("TextButton")
  13. --Properties:
  14. Prison.Name = "Prison"
  15. Prison.Parent = game.CoreGui
  16.  
  17. Frame.Parent = Prison
  18. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  19. Frame.Position = UDim2.new(0, 0, 0.623233914, 0)
  20. Frame.Size = UDim2.new(0, 119, 0, 20)
  21. Frame.Style = Enum.FrameStyle.DropShadow
  22.  
  23. Open.Name = "Open"
  24. Open.Parent = Frame
  25. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  26. Open.BackgroundTransparency = 0.89999997615814
  27. Open.Position = UDim2.new(0.0623847321, 0, -0.827207923, 0)
  28. Open.Size = UDim2.new(0, 90, 0, 11)
  29. Open.Font = Enum.Font.SciFi
  30. Open.Text = "Open"
  31. Open.TextColor3 = Color3.new(1, 1, 1)
  32. Open.TextSize = 14
  33. Open.MouseButton1Down:connect(function()
  34. Main.Visible = true
  35. Frame.Visible = false
  36. end)
  37.  
  38. Main.Name = "Main"
  39. Main.Parent = Prison
  40. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  41. Main.Position = UDim2.new(0.168195695, 0, 0.458398759, 0)
  42. Main.Size = UDim2.new(0, 219, 0, 230)
  43. Main.Visible = false
  44. Main.Style = Enum.FrameStyle.DropShadow
  45. Main.Active = true
  46. Main.Draggable = true
  47.  
  48. title.Name = "title"
  49. title.Parent = Main
  50. title.BackgroundColor3 = Color3.new(0, 0, 0)
  51. title.Position = UDim2.new(-0.0447542407, 0, -0.028541496, 0)
  52. title.Size = UDim2.new(0, 220, 0, 17)
  53. title.SizeConstraint = Enum.SizeConstraint.RelativeYY
  54. title.ClearTextOnFocus = false
  55. title.Font = Enum.Font.SciFi
  56. title.Text = "Prison life GUI"
  57. title.TextColor3 = Color3.new(1, 1, 1)
  58. title.TextSize = 14
  59.  
  60. Credits.Name = "Credits"
  61. Credits.Parent = Main
  62. Credits.BackgroundColor3 = Color3.new(0, 0, 0)
  63. Credits.Position = UDim2.new(-0.0401880294, 0, 0.962762892, 0)
  64. Credits.Size = UDim2.new(0, 220, 0, 17)
  65. Credits.SizeConstraint = Enum.SizeConstraint.RelativeYY
  66. Credits.ClearTextOnFocus = false
  67. Credits.Font = Enum.Font.SciFi
  68. Credits.Text = "Prison life GUI"
  69. Credits.TextColor3 = Color3.new(1, 1, 1)
  70. Credits.TextSize = 14
  71.  
  72. Fast.Name = "Fast"
  73. Fast.Parent = Main
  74. Fast.BackgroundColor3 = Color3.new(0, 0, 0)
  75. Fast.Position = UDim2.new(0.102930494, 0, 0.248920619, 0)
  76. Fast.Size = UDim2.new(0, 161, 0, 31)
  77. Fast.Font = Enum.Font.SciFi
  78. Fast.Text = "Fast M8"
  79. Fast.TextColor3 = Color3.new(1, 1, 1)
  80. Fast.TextSize = 14
  81. Fast.MouseButton1Down:connect(function()
  82. local player = game:GetService("Players").LocalPlayer
  83. local gun = player.Backpack:FindFirstChild("M9")
  84. local sM = require(gun:FindFirstChild("GunStates"))
  85. sM["Damage"] = 999
  86. sM["MaxAmmo"] = 9999991
  87. sM["StoredAmmo"] = 9999991
  88. sM["FireRate"] = 0.05
  89. sM["AmmoPerClip"] = 9999991
  90. sM["Range"] = 5000
  91. sM["ReloadTime"] = 0.05
  92. sM["Bullets"] = 10
  93. sM["AutoFire"] = true
  94. end)
  95.  
  96. Guns.Name = "Guns"
  97. Guns.Parent = Main
  98. Guns.BackgroundColor3 = Color3.new(0, 0, 0)
  99. Guns.Position = UDim2.new(0.102930494, 0, 0.544572771, 0)
  100. Guns.Size = UDim2.new(0, 161, 0, 31)
  101. Guns.Font = Enum.Font.SciFi
  102. Guns.Text = "All Guns"
  103. Guns.TextColor3 = Color3.new(1, 1, 1)
  104. Guns.TextSize = 14
  105. Guns.MouseButton1Down:connect(function()
  106. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  107.  
  108. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  109. print(lol)
  110. end
  111. end)
  112.  
  113. Close.Name = "X"
  114. Close.Parent = Main
  115. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  116. Close.Position = UDim2.new(0.890420139, 0, -0.0191720705, 0)
  117. Close.Size = UDim2.new(0, 22, 0, 12)
  118. Close.Font = Enum.Font.SciFi
  119. Close.Text = "X"
  120. Close.TextColor3 = Color3.new(1, 1, 1)
  121. Close.TextSize = 14
  122. Close.MouseButton1Down:connect(function()
  123. Frame.Visible = true
  124. Main.Visible = false
  125. end)
  126.  
  127. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement