Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.93 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local AbrirFramePrimario = Instance.new("Frame")
  3. local BotAbrir = Instance.new("TextButton")
  4. local FramePrimario = Instance.new("Frame")
  5. local Frame = Instance.new("Frame")
  6. local TituloScript = Instance.new("TextLabel")
  7. local Fechar = Instance.new("TextButton")
  8. local TunarAK47 = Instance.new("TextButton")
  9. local TunarM9 = Instance.new("TextButton")
  10. local TunarShotgun = Instance.new("TextButton")
  11. local TunarM4A1 = Instance.new("TextButton")
  12. local Texto1 = Instance.new("TextBox")
  13. local Texto2 = Instance.new("TextBox")
  14.  
  15. ScreenGui.Parent = game.CoreGui
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. AbrirFramePrimario.Name = "AbrirFramePrimario"
  19. AbrirFramePrimario.Parent = ScreenGui
  20. AbrirFramePrimario.Active = true
  21. AbrirFramePrimario.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  22. AbrirFramePrimario.BorderColor3 = Color3.new(0.203922, 0.207843, 0.203922)
  23. AbrirFramePrimario.Position = UDim2.new(0.477505952, 0, 0.0577395521, 0)
  24. AbrirFramePrimario.Size = UDim2.new(0, 100, 0, 44)
  25.  
  26. BotAbrir.Name = "BotAbrir"
  27. BotAbrir.Parent = AbrirFramePrimario
  28. BotAbrir.BackgroundColor3 = Color3.new(0.203922, 0.482353, 1)
  29. BotAbrir.Size = UDim2.new(0, 100, 0, 44)
  30. BotAbrir.Font = Enum.Font.SourceSans
  31. BotAbrir.Text = "Abrir"
  32. BotAbrir.TextColor3 = Color3.new(0, 0, 0)
  33. BotAbrir.TextSize = 14
  34. BotAbrir.MouseButton1Down:connect(function()
  35. FramePrimario.Visible = true
  36. AbrirFramePrimario.Visible = false
  37. end)
  38.  
  39. FramePrimario.Name = "FramePrimario"
  40. FramePrimario.Parent = ScreenGui
  41. FramePrimario.Active = true
  42. FramePrimario.BackgroundColor3 = Color3.new(0.109804, 0.360784, 0.498039)
  43. FramePrimario.Position = UDim2.new(0.136543021, 0, 0.275184304, 0)
  44. FramePrimario.Size = UDim2.new(0, 331, 0, 161)
  45. FramePrimario.Draggable = true
  46.  
  47. Frame.Parent = FramePrimario
  48. Frame.Active = true
  49. Frame.BackgroundColor3 = Color3.new(0.203922, 0.34902, 1)
  50. Frame.Size = UDim2.new(0, 331, 0, 39)
  51.  
  52. TituloScript.Name = "TituloScript"
  53. TituloScript.Parent = Frame
  54. TituloScript.Active = true
  55. TituloScript.BackgroundColor3 = Color3.new(1, 1, 1)
  56. TituloScript.BackgroundTransparency = 1
  57. TituloScript.Position = UDim2.new(-0.0241691843, 0, 0, 0)
  58. TituloScript.Size = UDim2.new(0, 331, 0, 39)
  59. TituloScript.Font = Enum.Font.SourceSans
  60. TituloScript.Text = "Prison Life GUI"
  61. TituloScript.TextColor3 = Color3.new(0, 0, 0)
  62. TituloScript.TextSize = 26
  63.  
  64. Fechar.Name = "Fechar"
  65. Fechar.Parent = FramePrimario
  66. Fechar.BackgroundColor3 = Color3.new(1, 0.25098, 0.25098)
  67. Fechar.Position = UDim2.new(0.87588352, 0, 0, 0)
  68. Fechar.Size = UDim2.new(0, 41, 0, 31)
  69. Fechar.Font = Enum.Font.SourceSans
  70. Fechar.Text = "X"
  71. Fechar.TextColor3 = Color3.new(0, 0, 0)
  72. Fechar.TextSize = 30
  73. Fechar.MouseButton1Down:connect(function()
  74. FramePrimario.Visible = false
  75. AbrirFramePrimario.Visible = true
  76. end)
  77.  
  78. TunarAK47.Name = "Tunar AK47"
  79. TunarAK47.Parent = FramePrimario
  80. TunarAK47.BackgroundColor3 = Color3.new(0.137255, 0.466667, 1)
  81. TunarAK47.Position = UDim2.new(0.0349206366, 0, 0.378881991, 0)
  82. TunarAK47.Size = UDim2.new(0, 92, 0, 38)
  83. TunarAK47.Font = Enum.Font.SourceSans
  84. TunarAK47.Text = "C (BOSS)"
  85. TunarAK47.TextColor3 = Color3.new(0, 0, 0)
  86. TunarAK47.TextSize = 19
  87.  
  88.  
  89. TunarM9.Name = "Tunar M9"
  90. TunarM9.Parent = FramePrimario
  91. TunarM9.BackgroundColor3 = Color3.new(0.137255, 0.466667, 1)
  92. TunarM9.Position = UDim2.new(0.377777785, 0, 0.701863348, 0)
  93. TunarM9.Size = UDim2.new(0, 95, 0, 38)
  94. TunarM9.Font = Enum.Font.SourceSans
  95. TunarM9.Text = "F (SAFE)"
  96. TunarM9.TextColor3 = Color3.new(0, 0, 0)
  97. TunarM9.TextSize = 19
  98.  
  99. TunarShotgun.Name = "Tunar Shotgun"
  100. TunarShotgun.Parent = FramePrimario
  101. TunarShotgun.BackgroundColor3 = Color3.new(0.137255, 0.466667, 1)
  102. TunarShotgun.Position = UDim2.new(0.0349206366, 0, 0.701863348, 0)
  103. TunarShotgun.Size = UDim2.new(0, 92, 0, 38)
  104. TunarShotgun.Font = Enum.Font.SourceSans
  105. TunarShotgun.Text = "G (SAFE)"
  106. TunarShotgun.TextColor3 = Color3.new(0, 0, 0)
  107. TunarShotgun.TextSize = 16
  108.  
  109. TunarM4A1.Name = "Tunar M4A1"
  110. TunarM4A1.Parent = FramePrimario
  111. TunarM4A1.BackgroundColor3 = Color3.new(0.137255, 0.466667, 1)
  112. TunarM4A1.Position = UDim2.new(0.377777785, 0, 0.378881991, 0)
  113. TunarM4A1.Size = UDim2.new(0, 95, 0, 38)
  114. TunarM4A1.Font = Enum.Font.SourceSans
  115. TunarM4A1.Text = "H (SAFE)"
  116. TunarM4A1.TextColor3 = Color3.new(0, 0, 0)
  117. TunarM4A1.TextSize = 19
  118.  
  119.  
  120. Texto1.Name = "Texto1"
  121. Texto1.Parent = FramePrimario
  122. Texto1.BackgroundColor3 = Color3.new(0.215686, 0.596078, 1)
  123. Texto1.Position = UDim2.new(0.706948638, 0, 0.298136652, 0)
  124. Texto1.Size = UDim2.new(0, 89, 0, 29)
  125. Texto1.Font = Enum.Font.SourceSans
  126. Texto1.Text = "C TP BOSS"
  127. Texto1.TextColor3 = Color3.new(0, 0, 0)
  128. Texto1.TextSize = 14
  129.  
  130. Texto2.Name = "Texto2"
  131. Texto2.Parent = FramePrimario
  132. Texto2.BackgroundColor3 = Color3.new(0.215686, 0.596078, 1)
  133. Texto2.Position = UDim2.new(0.706948638, 0, 0.658385098, 0)
  134. Texto2.Size = UDim2.new(0, 89, 0, 29)
  135. Texto2.Font = Enum.Font.SourceSans
  136. Texto2.Text = "F/G/H SAFE TP"
  137. Texto2.TextColor3 = Color3.new(0, 0, 0)
  138. Texto2.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement