Advertisement
ROBLOX_HAXX

Roblox Haxx X Executer Gui

Aug 30th, 2019
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local BlueLine = Instance.new("Frame")
  4. local TextBox = Instance.new("TextBox")
  5. local Execute = Instance.new("TextButton")
  6. local Inject = Instance.new("TextButton")
  7. local Clear = Instance.new("TextButton")
  8. local RobloxHaxxXText = Instance.new("TextLabel")
  9.  
  10. ScreenGui.Parent = game.CoreGui
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Main.Name = "Main"
  14. Main.Parent = ScreenGui
  15. Main.Active = true
  16. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  17. Main.BorderSizePixel = 0
  18. Main.Position = UDim2.new(0.177443609, 0, 0.211356461, 0)
  19. Main.Size = UDim2.new(0, 588, 0, 315)
  20. Main.Draggable = true
  21.  
  22. BlueLine.Name = "BlueLine"
  23. BlueLine.Parent = Main
  24. BlueLine.Active = true
  25. BlueLine.BackgroundColor3 = Color3.new(0.14902, 0.490196, 1)
  26. BlueLine.BorderSizePixel = 0
  27. BlueLine.Size = UDim2.new(0, 543, 0, 8)
  28.  
  29. TextBox.Parent = Main
  30. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  31. TextBox.BorderSizePixel = 0
  32. TextBox.Position = UDim2.new(0, 0, 0.0666666701, 0)
  33. TextBox.Size = UDim2.new(0, 588, 0, 243)
  34. TextBox.ClearTextOnFocus = false
  35. TextBox.Font = Enum.Font.SourceSans
  36. TextBox.MultiLine = true
  37. TextBox.Text = ""
  38. TextBox.TextColor3 = Color3.new(0, 0, 0)
  39. TextBox.TextScaled = true
  40. TextBox.TextSize = 14
  41. TextBox.TextWrapped = true
  42. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  43. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  44.  
  45. Execute.Name = "Execute"
  46. Execute.Parent = Main
  47. Execute.BackgroundColor3 = Color3.new(0.0156863, 1, 0)
  48. Execute.BorderSizePixel = 0
  49. Execute.Position = UDim2.new(0.0259236284, 0, 0.840255618, 0)
  50. Execute.Size = UDim2.new(0, 173, 0, 50)
  51. Execute.Font = Enum.Font.SourceSans
  52. Execute.Text = "Execute"
  53. Execute.TextColor3 = Color3.new(0, 0, 0)
  54. Execute.TextScaled = true
  55. Execute.TextSize = 14
  56. Execute.TextWrapped = true
  57. Execute.MouseButton1Down:connect(function()
  58. loadstring(TextBox.Text)
  59. end)
  60.  
  61. Inject.Name = "Inject"
  62. Inject.Parent = Main
  63. Inject.BackgroundColor3 = Color3.new(0.0156863, 1, 0)
  64. Inject.BorderSizePixel = 0
  65. Inject.Position = UDim2.new(0.694431901, 0, 0.840255618, 0)
  66. Inject.Size = UDim2.new(0, 143, 0, 50)
  67. Inject.Font = Enum.Font.SourceSans
  68. Inject.Text = "Inject"
  69. Inject.TextColor3 = Color3.new(0, 0, 0)
  70. Inject.TextScaled = true
  71. Inject.TextSize = 14
  72. Inject.TextWrapped = true
  73. Inject.MouseButton1Down:connect(function()
  74. RobloxHaxxXText.Text = ("Roblox Haxx X Injecting")
  75. RobloxHaxxXText.TextColor3 = Color3.new(0, 446, 0, 50)
  76. wait(2)
  77. RobloxHaxxXText.Text = ("Roblox Haxx X Checking Whitelist")
  78. RobloxHaxxXText.TextColor3 = Color3.new(0, 446, 0, 50)
  79. wait(2)
  80. RobloxHaxxXText.Text = ("Roblox Haxx X Scanning")
  81. RobloxHaxxXText.TextColor3 = Color3.new(0, 446, 0, 50)
  82. wait(2)
  83. RobloxHaxxXText.Text = ("Roblox Haxx X Ready!")
  84. RobloxHaxxXText.TextColor3 = Color3.new(0, 446, 0, 50)
  85. wait(2)
  86. RobloxHaxxXText.Text = ("Roblox Haxx X")
  87. RobloxHaxxXText.TextColor3 = Color3.new(0, 446, 0, 50)
  88. end)
  89.  
  90. Clear.Name = "Clear"
  91. Clear.Parent = Main
  92. Clear.BackgroundColor3 = Color3.new(0.0156863, 1, 0)
  93. Clear.BorderSizePixel = 0
  94. Clear.Position = UDim2.new(0.366623461, 0, 0.840255618, 0)
  95. Clear.Size = UDim2.new(0, 154, 0, 50)
  96. Clear.Font = Enum.Font.SourceSans
  97. Clear.Text = "Clear"
  98. Clear.TextColor3 = Color3.new(0, 0, 0)
  99. Clear.TextScaled = true
  100. Clear.TextSize = 14
  101. Clear.TextWrapped = true
  102. Clear.MouseButton1Down:connect(function()
  103. TextBox.Text = ("")
  104. end)
  105.  
  106. RobloxHaxxXText.Name = "RobloxHaxxXText"
  107. RobloxHaxxXText.Parent = Main
  108. RobloxHaxxXText.BackgroundColor3 = Color3.new(1, 1, 1)
  109. RobloxHaxxXText.Position = UDim2.new(-0.00170068024, 0, -0.0412698425, 0)
  110. RobloxHaxxXText.Size = UDim2.new(0, 588, 0, 21)
  111. RobloxHaxxXText.Font = Enum.Font.SourceSans
  112. RobloxHaxxXText.Text = "Roblox Haxx X"
  113. RobloxHaxxXText.TextColor3 = Color3.new(0, 0, 0)
  114. RobloxHaxxXText.TextScaled = true
  115. RobloxHaxxXText.TextSize = 14
  116. RobloxHaxxXText.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement