Advertisement
Guest User

MAINN

a guest
Apr 22nd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. local ScriptGUI = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local Panel1 = Instance.new("Frame")
  4. local Panel2 = Instance.new("Frame")
  5. local CS = Instance.new("TextLabel")
  6. local names = Instance.new("TextLabel")
  7. local openframe = Instance.new("Frame")
  8. local openbutton = Instance.new("TextButton")
  9.  
  10. ScriptGUI.Name = "ScriptGUI"
  11. ScriptGUI.Parent = game.CoreGui
  12. ScriptGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. Main.Name = "Main"
  15. Main.Parent = ScriptGUI
  16. Main.BackgroundColor3 = Color3.new(0.00392157, 0.117647, 0.133333)
  17. Main.BackgroundTransparency = 0.10000000149012
  18. Main.BorderSizePixel = 0
  19. Main.Position = UDim2.new(0.0757695362, 0, 0.0974671096, 0)
  20. Main.Size = UDim2.new(0, 585, 0, 328)
  21. Main.Visible = false
  22.  
  23. Panel1.Name = "Panel1"
  24. Panel1.Parent = Main
  25. Panel1.BackgroundColor3 = Color3.new(0.0117647, 0.0588235, 1)
  26. Panel1.BorderSizePixel = 0
  27. Panel1.Size = UDim2.new(0, 585, 0, 33)
  28.  
  29. Panel2.Name = "Panel2"
  30. Panel2.Parent = Main
  31. Panel2.BackgroundColor3 = Color3.new(0.0117647, 0.0588235, 1)
  32. Panel2.BorderSizePixel = 0
  33. Panel2.Position = UDim2.new(0, 0, 0.899390221, 0)
  34. Panel2.Size = UDim2.new(0, 585, 0, 33)
  35.  
  36. CS.Name = "CS"
  37. CS.Parent = Panel2
  38. CS.BackgroundColor3 = Color3.new(0.0588235, 0.0117647, 0.690196)
  39. CS.BorderSizePixel = 0
  40. CS.Position = UDim2.new(0.0170940179, 0, 0.151515156, 0)
  41. CS.Size = UDim2.new(0, 91, 0, 22)
  42. CS.Font = Enum.Font.Cartoon
  43. CS.Text = "Credits:"
  44. CS.TextColor3 = Color3.new(1, 1, 1)
  45. CS.TextSize = 20
  46. CS.TextStrokeTransparency = 2
  47.  
  48. names.Name = "names"
  49. names.Parent = Panel2
  50. names.BackgroundColor3 = Color3.new(0.0588235, 0.0117647, 0.690196)
  51. names.BorderSizePixel = 0
  52. names.Position = UDim2.new(0.147008553, 0, 0.151515156, 0)
  53. names.Size = UDim2.new(0, 114, 0, 22)
  54. names.Font = Enum.Font.Cartoon
  55. names.Text = "Darkolym, Joel"
  56. names.TextColor3 = Color3.new(1, 1, 1)
  57. names.TextSize = 20
  58. names.TextStrokeTransparency = 2
  59.  
  60. openframe.Name = "openframe"
  61. openframe.Parent = ScriptGUI
  62. openframe.BackgroundColor3 = Color3.new(0.164706, 0, 1)
  63. openframe.Position = UDim2.new(0, 0, 0.605721354, 0)
  64. openframe.Size = UDim2.new(0, 130, 0, 34)
  65.  
  66. openbutton.Name = "openbutton"
  67. openbutton.Parent = openframe
  68. openbutton.BackgroundColor3 = Color3.new(0.00392157, 0.156863, 0.517647)
  69. openbutton.BorderSizePixel = 0
  70. openbutton.Position = UDim2.new(0.0461538471, 0, 0.14705883, 0)
  71. openbutton.Size = UDim2.new(0, 117, 0, 23)
  72. openbutton.Font = Enum.Font.Cartoon
  73. openbutton.Text = "OPEN"
  74. openbutton.TextColor3 = Color3.new(0, 0, 0)
  75. openbutton.TextSize = 25
  76. openbutton.MouseButton1Down:Connect(function()
  77. Main.Visible = true
  78. openframe.Visible = false
  79. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement