Advertisement
Guest User

a prison life script I made

a guest
Jul 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.24 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local OwO = 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 close = Instance.new("TextButton")
  11. local fastM9 = Instance.new("TextButton")
  12. local prisonlife = Instance.new("TextButton")
  13. --Properties:
  14. OwO.Name = "OwO"
  15. OwO.Parent = game.CoreGui
  16. OwO.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. frame.Name = "frame"
  19. frame.Parent = OwO
  20. frame.BackgroundColor3 = Color3.new(0, 1, 1)
  21. frame.Position = UDim2.new(0.0563689619, 0, 0.513020813, 0)
  22. frame.Size = UDim2.new(0, 84, 0, 38)
  23.  
  24. open.Name = "open"
  25. open.Parent = frame
  26. open.BackgroundColor3 = Color3.new(0, 1, 1)
  27. open.BorderColor3 = Color3.new(0, 1, 1)
  28. open.BorderSizePixel = 0
  29. open.Position = UDim2.new(0.0357141495, 0, 0.105263233, 0)
  30. open.Size = UDim2.new(0, 77, 0, 29)
  31. open.Font = Enum.Font.SourceSans
  32. open.Text = "Open"
  33. open.TextColor3 = Color3.new(0, 0, 0)
  34. open.TextScaled = true
  35. open.TextSize = 14
  36. open.TextWrapped = true
  37. open.MouseButton1Down:connect(function()
  38. main.Visible = true
  39. frame.Visible = false
  40. end)
  41.  
  42. main.Name = "main"
  43. main.Parent = OwO
  44. main.Active = true
  45. main.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  46. main.BackgroundTransparency = 0.5
  47. main.BorderColor3 = Color3.new(0, 1, 0.498039)
  48. main.BorderSizePixel = 0
  49. main.Position = UDim2.new(0.259150803, 0, 0.18359375, 0)
  50. main.Selectable = true
  51. main.Size = UDim2.new(0, 325, 0, 316)
  52. main.Visible = false
  53. main.Active = true
  54. main.Draggable = true
  55.  
  56. title.Name = "title"
  57. title.Parent = main
  58. title.BackgroundColor3 = Color3.new(0, 1, 0)
  59. title.Size = UDim2.new(0, 325, 0, 37)
  60. title.Font = Enum.Font.SourceSans
  61. title.Text = "coconuts"
  62. title.TextColor3 = Color3.new(0, 0, 0)
  63. title.TextScaled = true
  64. title.TextSize = 14
  65. title.TextWrapped = true
  66.  
  67. credits.Name = "credits"
  68. credits.Parent = main
  69. credits.BackgroundColor3 = Color3.new(0, 1, 0)
  70. credits.Position = UDim2.new(0, 0, 0.882911384, 0)
  71. credits.Size = UDim2.new(0, 325, 0, 37)
  72. credits.Font = Enum.Font.SourceSans
  73. credits.Text = "gui made by sophia101#2405"
  74. credits.TextColor3 = Color3.new(0, 0, 0)
  75. credits.TextScaled = true
  76. credits.TextSize = 14
  77. credits.TextWrapped = true
  78.  
  79. close.Name = "close"
  80. close.Parent = main
  81. close.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  82. close.BorderColor3 = Color3.new(0, 1, 0.498039)
  83. close.BorderSizePixel = 0
  84. close.Position = UDim2.new(0.873846173, 0, 0, 0)
  85. close.Size = UDim2.new(0, 41, 0, 37)
  86. close.Font = Enum.Font.SourceSans
  87. close.Text = "X"
  88. close.TextColor3 = Color3.new(0, 0, 0)
  89. close.TextScaled = true
  90. close.TextSize = 14
  91. close.TextWrapped = true
  92. close.MouseButton1Down:connect(function()
  93. frame.Visible = true
  94. main.Visible = false
  95. end)
  96.  
  97. fastM9.Name = "fastM9"
  98. fastM9.Parent = main
  99. fastM9.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  100. fastM9.BorderColor3 = Color3.new(0, 1, 0.498039)
  101. fastM9.Position = UDim2.new(0.233846158, 0, 0.249999985, 0)
  102. fastM9.Size = UDim2.new(0, 172, 0, 50)
  103. fastM9.Font = Enum.Font.SourceSans
  104. fastM9.Text = "Fast M9"
  105. fastM9.TextColor3 = Color3.new(0, 0, 0)
  106. fastM9.TextScaled = true
  107. fastM9.TextSize = 14
  108. fastM9.TextWrapped = true
  109. fastM9.MouseButton1Down:connect(function()
  110. local player = game:GetService("Players").LocalPlayer
  111. local gun = player.Backpack:FindFirstChild("M9")
  112. local sM = require(gun:FindFirstChild("GunStates"))
  113. sM["Damage"] = 999
  114. sM["MaxAmmo"] = 9999991
  115. sM["StoredAmmo"] = 9999991
  116. sM["FireRate"] = 0.05
  117. sM["AmmoPerClip"] = 9999991
  118. sM["Range"] = 5000
  119. sM["ReloadTime"] = 0.05
  120. sM["Bullets"] = 10
  121. sM["AutoFire"] = true
  122. end)
  123.  
  124.  
  125. prisonlife.Name = "prisonlife"
  126. prisonlife.Parent = main
  127. prisonlife.BackgroundColor3 = Color3.new(0, 1, 0.498039)
  128. prisonlife.BorderColor3 = Color3.new(0, 1, 0.498039)
  129. prisonlife.Position = UDim2.new(0.233846158, 0, 0.550632894, 0)
  130. prisonlife.Size = UDim2.new(0, 172, 0, 50)
  131. prisonlife.Font = Enum.Font.SourceSans
  132. prisonlife.Text = "Prison Life Stuff"
  133. prisonlife.TextColor3 = Color3.new(0, 0, 0)
  134. prisonlife.TextScaled = true
  135. prisonlife.TextSize = 14
  136. prisonlife.TextWrapped = true
  137. prisonlife.MouseButton1Down:connect(function()
  138. loadstring(game:HttpGet(("https://pastebin.com/raw/P1dm14ju"), true))()
  139. end)
  140. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement