Advertisement
Guest User

Untitled

a guest
Apr 30th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.49 KB | None | 0 0
  1. -- Farewell Infortality.
  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 submit = Instance.new("TextButton")
  9. local maingui = Instance.new("Frame")
  10. local allguns = Instance.new("TextButton")
  11. local exit = Instance.new("TextButton")
  12. local opengui = Instance.new("Frame")
  13. local open = Instance.new("TextButton")
  14. --Properties:
  15. ScreenGui.Parent = game.CoreGui
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. logingui.Name = "logingui"
  19. logingui.Parent = ScreenGui
  20. logingui.BackgroundColor3 = Color3.new(1, 1, 1)
  21. logingui.Position = UDim2.new(0.395501435, 0, 0.103379712, 0)
  22. logingui.Size = UDim2.new(0, 294, 0, 378)
  23. logingui.Active = true
  24. logingui.Draggable = true
  25.  
  26. user.Name = "user"
  27. user.Parent = logingui
  28. user.BackgroundColor3 = Color3.new(0, 0, 0)
  29. user.Position = UDim2.new(0, 0, 0.208994716, 0)
  30. user.Size = UDim2.new(0, 294, 0, 45)
  31. user.Font = Enum.Font.SourceSans
  32. user.PlaceholderColor3 = Color3.new(1, 1, 1)
  33. user.Text = "Username"
  34. user.TextColor3 = Color3.new(1, 1, 1)
  35. user.TextScaled = true
  36. user.TextSize = 14
  37. user.TextStrokeColor3 = Color3.new(1, 1, 1)
  38. user.TextWrapped = true
  39. user.TextXAlignment = Enum.TextXAlignment.Left
  40.  
  41. pass.Name = "pass"
  42. pass.Parent = logingui
  43. pass.BackgroundColor3 = Color3.new(0, 0, 0)
  44. pass.Position = UDim2.new(0, 0, 0.420634925, 0)
  45. pass.Size = UDim2.new(0, 294, 0, 45)
  46. pass.Font = Enum.Font.SourceSans
  47. pass.PlaceholderColor3 = Color3.new(1, 1, 1)
  48. pass.Text = "Password"
  49. pass.TextColor3 = Color3.new(1, 1, 1)
  50. pass.TextScaled = true
  51. pass.TextSize = 14
  52. pass.TextStrokeColor3 = Color3.new(1, 1, 1)
  53. pass.TextWrapped = true
  54. pass.TextXAlignment = Enum.TextXAlignment.Left
  55.  
  56. submit.Name = "submit"
  57. submit.Parent = logingui
  58. submit.BackgroundColor3 = Color3.new(0, 0, 0)
  59. submit.Position = UDim2.new(0.159863949, 0, 0.669312179, 0)
  60. submit.Size = UDim2.new(0, 200, 0, 50)
  61. submit.Font = Enum.Font.SourceSans
  62. submit.Text = "Submit"
  63. submit.TextColor3 = Color3.new(1, 1, 1)
  64. submit.TextScaled = true
  65. submit.TextSize = 14
  66. submit.TextStrokeColor3 = Color3.new(1, 1, 1)
  67. submit.TextWrapped = true
  68. submit.MouseButton1Down:connect(function()
  69. if user.Text == "rhedcraft" and pass.Text == "password" then
  70. logingui.Visible = false
  71. opengui.Visible = true
  72. end
  73. end)
  74.  
  75. maingui.Name = "maingui"
  76. maingui.Parent = ScreenGui
  77. maingui.BackgroundColor3 = Color3.new(1, 1, 1)
  78. maingui.Position = UDim2.new(0.35707593, 0, 0.192842931, 0)
  79. maingui.Size = UDim2.new(0, 357, 0, 319)
  80. maingui.Visible = false
  81. maingui.Active = true
  82. maingui.Draggable = true
  83.  
  84. allguns.Name = "allguns"
  85. allguns.Parent = maingui
  86. allguns.BackgroundColor3 = Color3.new(0, 0, 0)
  87. allguns.Position = UDim2.new(0.179271713, 0, 0.420062691, 0)
  88. allguns.Size = UDim2.new(0, 228, 0, 50)
  89. allguns.Font = Enum.Font.SourceSans
  90. allguns.Text = "all guns for prison life"
  91. allguns.TextColor3 = Color3.new(1, 1, 1)
  92. allguns.TextScaled = true
  93. allguns.TextSize = 14
  94. allguns.TextStrokeColor3 = Color3.new(1, 1, 1)
  95. allguns.TextWrapped = true
  96. allguns.MouseButton1Down:connect(function()
  97. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  98.  
  99. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  100. print(lol)
  101. end
  102. end)
  103.  
  104. exit.Name = "exit"
  105. exit.Parent = maingui
  106. exit.BackgroundColor3 = Color3.new(1, 1, 1)
  107. exit.BorderColor3 = Color3.new(1, 1, 1)
  108. exit.BorderSizePixel = 0
  109. exit.Position = UDim2.new(0.882352948, 0, 0, 0)
  110. exit.Size = UDim2.new(0, 42, 0, 39)
  111. exit.Text = "X"
  112. exit.TextColor3 = Color3.new(0, 0, 0)
  113. exit.TextScaled = true
  114. exit.TextSize = 14
  115. exit.TextWrapped = true
  116. exit.MouseButton1Down:connect(function()
  117. maingui.Visible = false
  118. opengui.Visible = true
  119. end)
  120.  
  121. opengui.Name = "opengui"
  122. opengui.Parent = ScreenGui
  123. opengui.BackgroundColor3 = Color3.new(0, 0, 0)
  124. opengui.BorderColor3 = Color3.new(1, 0, 0)
  125. opengui.BorderSizePixel = 0
  126. opengui.Position = UDim2.new(0.0121836923, 0, 0.437375724, 0)
  127. opengui.Size = UDim2.new(0, 173, 0, 43)
  128. opengui.Visible = false
  129.  
  130. open.Name = "open"
  131. open.Parent = opengui
  132. open.BackgroundColor3 = Color3.new(0, 0, 0)
  133. open.Position = UDim2.new(0.0578034669, 0, 0.116279364, 0)
  134. open.Size = UDim2.new(0, 153, 0, 32)
  135. open.Font = Enum.Font.SourceSans
  136. open.Text = "Open"
  137. open.TextColor3 = Color3.new(1, 1, 1)
  138. open.TextScaled = true
  139. open.TextSize = 14
  140. open.TextStrokeColor3 = Color3.new(1, 1, 1)
  141. open.TextWrapped = true
  142. open.MouseButton1Down:connect(function()
  143. maingui.Visible = true
  144. opengui.Visible = false
  145. end)
  146. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement