Advertisement
Zyded

Untitled

Jun 29th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. -- Made by Hexogon
  2. -- Version: 1.0
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local Header = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local TextButton = Instance.new("TextButton")
  9. local exe = Instance.new("TextButton")
  10. local Clear = Instance.new("TextButton")
  11. local Inject = Instance.new("TextButton")
  12. local Coming = Instance.new("TextButton")
  13. local TextBox = Instance.new("TextBox")
  14. --Properties:
  15. ScreenGui.Name = "Hexogon"
  16. ScreenGui.Parent = game.CoreGui
  17. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  18.  
  19.  
  20. Main.Name = "Main"
  21. Main.Parent = ScreenGui
  22. Main.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  23. Main.BackgroundTransparency = 0.10000000149012
  24. Main.Position = UDim2.new(0.206278041, 0, 0.0995086059, 0)
  25. Main.Size = UDim2.new(0, 362, 0, 393)
  26. Main.Active = true
  27. Main.Draggable = true
  28.  
  29. Header.Name = "Header"
  30. Header.Parent = Main
  31. Header.BackgroundColor3 = Color3.new(0, 0, 0)
  32. Header.Size = UDim2.new(0, 361, 0, 24)
  33.  
  34. TextLabel.Parent = Header
  35. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  36. TextLabel.BorderSizePixel = 0
  37. TextLabel.Size = UDim2.new(0, 92, 0, 24)
  38. TextLabel.Font = Enum.Font.Code
  39. TextLabel.Text = "Hexogon v1"
  40. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  41. TextLabel.TextSize = 15
  42.  
  43. TextButton.Parent = Header
  44. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  45. TextButton.BorderSizePixel = 0
  46. TextButton.Position = UDim2.new(0.935087264, 0, -0.025491396, 0)
  47. TextButton.Size = UDim2.new(0, 23, 0, 15)
  48. TextButton.Font = Enum.Font.SourceSans
  49. TextButton.Text = "X"
  50. TextButton.TextColor3 = Color3.new(1, 1, 1)
  51. TextButton.TextSize = 14
  52.  
  53. exe.Name = "exe"
  54. exe.Parent = ScreenGui
  55. exe.BackgroundColor3 = Color3.new(1, 1, 1)
  56. exe.Position = UDim2.new(0.206278026, 0, 0.14004913, 0)
  57. exe.Size = UDim2.new(0, 82, 0, 18)
  58. exe.Font = Enum.Font.Code
  59. exe.Text = "Execute"
  60. exe.TextColor3 = Color3.new(0, 0, 0)
  61. exe.TextSize = 14
  62.  
  63. Clear.Name = "Clear"
  64. Clear.Parent = ScreenGui
  65. Clear.BackgroundColor3 = Color3.new(1, 1, 1)
  66. Clear.Position = UDim2.new(0.267563522, 0, 0.14004913, 0)
  67. Clear.Size = UDim2.new(0, 82, 0, 18)
  68. Clear.Font = Enum.Font.Code
  69. Clear.Text = "Clear"
  70. Clear.TextColor3 = Color3.new(0, 0, 0)
  71. Clear.TextSize = 14
  72.  
  73. Inject.Name = "Inject"
  74. Inject.Parent = ScreenGui
  75. Inject.BackgroundColor3 = Color3.new(1, 1, 1)
  76. Inject.Position = UDim2.new(0.328849018, 0, 0.14004913, 0)
  77. Inject.Size = UDim2.new(0, 82, 0, 18)
  78. Inject.Font = Enum.Font.SourceSans
  79. Inject.Text = "Inject"
  80. Inject.TextColor3 = Color3.new(0, 0, 0)
  81. Inject.TextSize = 14
  82.  
  83. Coming.Name = "Coming"
  84. Coming.Parent = ScreenGui
  85. Coming.BackgroundColor3 = Color3.new(1, 1, 1)
  86. Coming.Position = UDim2.new(0.415545583, 0, 0.14004913, 0)
  87. Coming.Size = UDim2.new(0, 82, 0, 18)
  88. Coming.Font = Enum.Font.SourceSans
  89. Coming.Text = "Coming soon"
  90. Coming.TextColor3 = Color3.new(0, 0, 0)
  91. Coming.TextSize = 14
  92.  
  93. TextBox.Parent = ScreenGui
  94. TextBox.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  95. TextBox.Position = UDim2.new(0.216741398, 0, 0.190417692, 0)
  96. TextBox.Size = UDim2.new(0, 333, 0, 304)
  97. TextBox.Font = Enum.Font.Code
  98. TextBox.Text = ""
  99. TextBox.TextColor3 = Color3.new(1, 1, 1)
  100. TextBox.TextSize = 14
  101. TextBox.TextWrapped = true
  102. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  103. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  104. -- Scripts:
  105. exe.MouseButton1Down:connect(function()
  106. loadstring(TextBox.Text)
  107. end)
  108. Clear.MouseButton1Down:connect(function()
  109. TextBox.Text = ("")
  110. end)
  111. Inject.MouseButton1Down:connect(function()
  112. TextBox.Text = ("Injecting")
  113. TextBox.TextColor3 = Color3.new(0, 446, 0, 50)
  114. wait(2)
  115. TextBox.Text = ("Ready")
  116. TextBox.TextColor3 = Color3.new(0, 446, 0, 50)
  117. end)
  118. TextButton.MouseButton1Down:connect(function()
  119. Main.Visisble = false
  120. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement