Advertisement
Just_A_Name

my own gui

Feb 21st, 2020
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. -- yes im epic ikr andreiek designed it ;)
  2. -- SO CREDITS TO MEE!!!!!!!!!!!!!
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local MainGui = Instance.new("Frame")
  6. local title = Instance.new("TextLabel")
  7. local Esp11 = Instance.new("TextButton")
  8. local BigHitBox = Instance.new("TextButton")
  9. local Closegui = Instance.new("TextButton")
  10. local OpenGUI = Instance.new("Frame")
  11. local Open = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.CoreGui
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. MainGui.Name = "MainGui Gui"
  19. MainGui.Parent = ScreenGui
  20. MainGui.BackgroundColor3 = Color3.fromRGB(90, 90, 90)
  21. MainGui.Position = UDim2.new(0.138425261, 0, 0.664136529, 0)
  22. MainGui.Size = UDim2.new(0, 237, 0, 150)
  23. MainGui.Visible = false
  24. MainGui.Active = true
  25. MainGui.Draggable = true
  26.  
  27. title.Name = "title"
  28. title.Parent = MainGui
  29. title.BackgroundColor3 = Color3.fromRGB(76, 76, 76)
  30. title.Size = UDim2.new(0, 237, 0, 36)
  31. title.Text = "Im Ep1c"
  32. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  33. title.TextSize = 14.000
  34.  
  35. Esp11.Name = "Esp11"
  36. Esp11.Parent = MainGui
  37. Esp11.BackgroundColor3 = Color3.fromRGB(72, 216, 216)
  38. Esp11.Position = UDim2.new(0, 0, 0.473333329, 0)
  39. Esp11.Size = UDim2.new(0, 81, 0, 42)
  40. Esp11.Font = Enum.Font.SourceSansBold
  41. Esp11.Text = "ESP"
  42. Esp11.TextColor3 = Color3.fromRGB(0, 0, 0)
  43. Esp11.TextScaled = true
  44. Esp11.TextSize = 14.000
  45. Esp11.TextWrapped = true
  46. Esp11.MouseButton1Down:connect(function()
  47. loadstring(game:HttpGet("https://pastebin.com/raw/pyBqTjM2",true))()
  48. end)
  49.  
  50. BigHitBox.Name = "BigHitBox"
  51. BigHitBox.Parent = MainGui
  52. BigHitBox.BackgroundColor3 = Color3.fromRGB(75, 226, 0)
  53. BigHitBox.Position = UDim2.new(0.658227861, 0, 0.473333329, 0)
  54. BigHitBox.Size = UDim2.new(0, 81, 0, 42)
  55. BigHitBox.Font = Enum.Font.Arcade
  56. BigHitBox.Text = "HITBOX"
  57. BigHitBox.TextColor3 = Color3.fromRGB(0, 0, 0)
  58. BigHitBox.TextScaled = true
  59. BigHitBox.TextSize = 14.000
  60. BigHitBox.TextWrapped = true
  61. BigHitBox.MouseButton1Down:connect(function()
  62. loadstring(game:HttpGet("https://pastebin.com/raw/uM1QzLRE",true))()
  63. end)
  64.  
  65. Closegui.Name = "Close gui"
  66. Closegui.Parent = MainGui
  67. Closegui.BackgroundColor3 = Color3.fromRGB(204, 0, 0)
  68. Closegui.Position = UDim2.new(0.79708159, 0, -0.0006326437, 0)
  69. Closegui.Size = UDim2.new(0, 41, 0, 36)
  70. Closegui.Font = Enum.Font.Fantasy
  71. Closegui.Text = "Close"
  72. Closegui.TextColor3 = Color3.fromRGB(0, 0, 0)
  73. Closegui.TextSize = 14.000
  74. Closegui.MouseButton1Down:connect(function()
  75. MainGui.Visible = false
  76. OpenGUI.Visible = true
  77. end)
  78.  
  79. OpenGUI.Name = "Open GUI"
  80. OpenGUI.Parent = ScreenGui
  81. OpenGUI.BackgroundColor3 = Color3.fromRGB(0, 216, 0)
  82. OpenGUI.Position = UDim2.new(0.00696055638, 0, 0.527514219, 0)
  83. OpenGUI.Size = UDim2.new(0, 75, 0, 35)
  84. OpenGUI.Active = true
  85. OpenGUI.Draggable = true
  86.  
  87. Open.Name = "Open"
  88. Open.Parent = OpenGUI
  89. Open.BackgroundColor3 = Color3.fromRGB(239, 239, 119)
  90. Open.Size = UDim2.new(0, 75, 0, 35)
  91. Open.Font = Enum.Font.Fantasy
  92. Open.Text = "OPENN"
  93. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  94. Open.TextScaled = true
  95. Open.TextSize = 14.000
  96. Open.TextWrapped = true
  97. Open.MouseButton1Down:connect(function()
  98. OpenGUI.Visible = false
  99. MainGui.Visible = true
  100. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement