Advertisement
Guest User

Untitled

a guest
Aug 25th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.72 KB | None | 0 0
  1. -- Owner of script GIIph/???
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local logingui = Instance.new("Frame")
  6. local user = Instance.new("TextBox")
  7. local pass = Instance.new("TextBox")
  8. local name = Instance.new("TextLabel")
  9. local credits = Instance.new("TextLabel")
  10. local submit = Instance.new("TextButton")
  11. local maingui = Instance.new("Frame")
  12. local allguns = Instance.new("TextButton")
  13. local close = Instance.new("TextButton")
  14. local opengui = Instance.new("Frame")
  15. local open = Instance.new("TextButton")
  16. --Properties:
  17. ScreenGui.Parent = game.Workspace
  18.  
  19. logingui.Name = "logingui"
  20. logingui.Parent = ScreenGui
  21. logingui.BackgroundColor3 = Color3.new(0, 0, 0)
  22. logingui.BackgroundTransparency = 0.5
  23. logingui.BorderColor3 = Color3.new(0.666667, 0, 0)
  24. logingui.BorderSizePixel = 5
  25. logingui.Position = UDim2.new(0.356981158, 0, 0.230130494, 0)
  26. logingui.Size = UDim2.new(0, 266, 0, 398)
  27. logingui.Active = true
  28. logingui.Draggable = true
  29.  
  30. user.Name = "user"
  31. user.Parent = logingui
  32. user.BackgroundColor3 = Color3.new(0, 0, 0)
  33. user.BackgroundTransparency = 0.5
  34. user.BorderColor3 = Color3.new(0.666667, 0, 0)
  35. user.BorderSizePixel = 3
  36. user.Position = UDim2.new(0.125531226, 0, 0.291587293, 0)
  37. user.Size = UDim2.new(0, 200, 0, 36)
  38. user.Font = Enum.Font.SciFi
  39. user.Text = "User"
  40. user.TextColor3 = Color3.new(0, 0, 0)
  41. user.TextScaled = true
  42. user.TextSize = 14
  43. user.TextWrapped = true
  44.  
  45. pass.Name = "pass"
  46. pass.Parent = logingui
  47. pass.BackgroundColor3 = Color3.new(0, 0, 0)
  48. pass.BackgroundTransparency = 0.5
  49. pass.BorderColor3 = Color3.new(0.666667, 0, 0)
  50. pass.BorderSizePixel = 3
  51. pass.Position = UDim2.new(0.125531226, 0, 0.454903871, 0)
  52. pass.Size = UDim2.new(0, 200, 0, 36)
  53. pass.Font = Enum.Font.SciFi
  54. pass.Text = "Password"
  55. pass.TextColor3 = Color3.new(0, 0, 0)
  56. pass.TextScaled = true
  57. pass.TextSize = 14
  58. pass.TextWrapped = true
  59.  
  60. name.Name = "name"
  61. name.Parent = logingui
  62. name.BackgroundColor3 = Color3.new(0, 0, 0)
  63. name.BackgroundTransparency = 0.5
  64. name.BorderColor3 = Color3.new(0.666667, 0, 0)
  65. name.Size = UDim2.new(0, 107, 0, 19)
  66. name.Font = Enum.Font.SciFi
  67. name.Text = "Rise of prison life"
  68. name.TextColor3 = Color3.new(0, 0, 0)
  69. name.TextSize = 14
  70. name.TextXAlignment = Enum.TextXAlignment.Left
  71. name.TextYAlignment = Enum.TextYAlignment.Top
  72.  
  73. credits.Name = "credits"
  74. credits.Parent = logingui
  75. credits.BackgroundColor3 = Color3.new(0, 0, 0)
  76. credits.BackgroundTransparency = 0.5
  77. credits.BorderColor3 = Color3.new(0.666667, 0, 0)
  78. credits.Position = UDim2.new(0, 0, 0.952261329, 0)
  79. credits.Size = UDim2.new(0, 33, 0, 19)
  80. credits.Font = Enum.Font.SciFi
  81. credits.Text = "GIIph"
  82. credits.TextColor3 = Color3.new(0, 0, 0)
  83. credits.TextSize = 14
  84. credits.TextXAlignment = Enum.TextXAlignment.Left
  85. credits.TextYAlignment = Enum.TextYAlignment.Top
  86.  
  87. submit.Name = "submit"
  88. submit.Parent = logingui
  89. submit.BackgroundColor3 = Color3.new(0, 0, 0)
  90. submit.BackgroundTransparency = 0.5
  91. submit.BorderColor3 = Color3.new(0.666667, 0, 0)
  92. submit.BorderSizePixel = 3
  93. submit.Position = UDim2.new(0.124060154, 0, 0.615577936, 0)
  94. submit.Size = UDim2.new(0, 200, 0, 50)
  95. submit.Font = Enum.Font.SciFi
  96. submit.Text = "Submit"
  97. submit.TextColor3 = Color3.new(0, 0, 0)
  98. submit.TextScaled = true
  99. submit.TextSize = 14
  100. submit.TextWrapped = true
  101. submit.MouseButton1Down:connect(function()
  102. if user.Text == "usernamehere" and pass.Text == "passwordhere" then
  103. logingui.Visible = false
  104. opengui.Visible = true
  105. end
  106. end)
  107.  
  108. maingui.Name = "maingui"
  109. maingui.Parent = ScreenGui
  110. maingui.BackgroundColor3 = Color3.new(0, 0, 0)
  111. maingui.BackgroundTransparency = 0.5
  112. maingui.BorderColor3 = Color3.new(0.666667, 0, 0)
  113. maingui.BorderSizePixel = 3
  114. maingui.Position = UDim2.new(0.377358496, 0, 0.349940658, 0)
  115. maingui.Size = UDim2.new(0, 200, 0, 197)
  116. maingui.Visible = false
  117. maingui.Active = true
  118. maingui.Draggable = true
  119.  
  120. allguns.Name = "allguns"
  121. allguns.Parent = maingui
  122. allguns.BackgroundColor3 = Color3.new(0, 0, 0)
  123. allguns.BackgroundTransparency = 0.5
  124. allguns.BorderColor3 = Color3.new(0.666667, 0, 0)
  125. allguns.BorderSizePixel = 3
  126. allguns.Position = UDim2.new(0, 0, 0.309644669, 0)
  127. allguns.Size = UDim2.new(0, 200, 0, 71)
  128. allguns.Font = Enum.Font.SciFi
  129. allguns.Text = "Get all guns"
  130. allguns.TextColor3 = Color3.new(0, 0, 0)
  131. allguns.TextSize = 14
  132. allguns.MouseButton1Down:connect(function()
  133. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  134.  
  135. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  136. print(lol)
  137. end
  138. end)
  139.  
  140. close.Name = "close"
  141. close.Parent = maingui
  142. close.BackgroundColor3 = Color3.new(0, 0, 0)
  143. close.BackgroundTransparency = 0.5
  144. close.BorderColor3 = Color3.new(0.666667, 0, 0)
  145. close.BorderSizePixel = 3
  146. close.Position = UDim2.new(0.839999974, 0, 0, 0)
  147. close.Size = UDim2.new(0, 32, 0, 32)
  148. close.Font = Enum.Font.SciFi
  149. close.Text = "X"
  150. close.TextColor3 = Color3.new(0, 0, 0)
  151. close.TextScaled = true
  152. close.TextSize = 14
  153. close.TextWrapped = true
  154. close.MouseButton1Down:connect(function()
  155. maingui.Visible = false
  156. opengui.Visible = true
  157. end)
  158.  
  159. opengui.Name = "opengui"
  160. opengui.Parent = ScreenGui
  161. opengui.BackgroundColor3 = Color3.new(1, 1, 1)
  162. opengui.Position = UDim2.new(0.00679244101, 0, 0.435349941, 0)
  163. opengui.Size = UDim2.new(0, 114, 0, 31)
  164. opengui.Visible = false
  165.  
  166.  
  167. open.Name = "open"
  168. open.Parent = opengui
  169. open.BackgroundColor3 = Color3.new(0, 0, 0)
  170. open.BackgroundTransparency = 0.5
  171. open.BorderColor3 = Color3.new(0.666667, 0, 0)
  172. open.BorderSizePixel = 3
  173. open.Position = UDim2.new(0, 0, 2.38418579e-07, 0)
  174. open.Size = UDim2.new(0, 114, 0, 31)
  175. open.Selected = true
  176. open.Font = Enum.Font.SciFi
  177. open.Text = "Open"
  178. open.TextColor3 = Color3.new(0, 0, 0)
  179. open.TextSize = 14
  180. open.MouseButton1Down:connect(function()
  181. maingui.Visible = true
  182. opengui.Visible = false
  183. end)
  184. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement