leelandshoe

Argonaut In Game GUI

Dec 29th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. local argoInGame = Instance.new("ScreenGui")
  2. local MainFrame = Instance.new("Frame")
  3. local Console = Instance.new("TextBox")
  4. local exeBut = Instance.new("TextButton")
  5. local clearBut = Instance.new("TextButton")
  6. local TextLabel = Instance.new("TextLabel")
  7.  
  8. argoInGame.Name = "argoInGame"
  9. argoInGame.Parent = game.CoreGui
  10. argoInGame.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11.  
  12. MainFrame.Name = "MainFrame"
  13. MainFrame.Parent = argoInGame
  14. MainFrame.BackgroundColor3 = Color3.new(0.192157, 0.2, 0.247059)
  15. MainFrame.BackgroundTransparency = 0.10000000149012
  16. MainFrame.BorderSizePixel = 3
  17. MainFrame.Position = UDim2.new(0.346666664, 0, 0.332068324, 0)
  18. MainFrame.Size = UDim2.new(0.303333342, 0, 0.361859649, 0)
  19.  
  20. Console.Name = "Console"
  21. Console.Parent = MainFrame
  22. Console.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  23. Console.BackgroundTransparency = 0.10000000149012
  24. Console.BorderColor3 = Color3.new(0, 0, 0)
  25. Console.BorderSizePixel = 2
  26. Console.Position = UDim2.new(0.0327272527, 0, 0.0456036031, 0)
  27. Console.Size = UDim2.new(0.942491114, 0, 0.744991899, 0)
  28. Console.ClearTextOnFocus = false
  29. Console.Font = Enum.Font.SourceSans
  30. Console.MultiLine = true
  31. Console.Text = ""
  32. Console.TextColor3 = Color3.new(0.819608, 0.819608, 0.819608)
  33. Console.TextScaled = true
  34. Console.TextSize = 14
  35. Console.TextWrapped = true
  36. Console.TextXAlignment = Enum.TextXAlignment.Left
  37. Console.TextYAlignment = Enum.TextYAlignment.Top
  38.  
  39. exeBut.Name = "exeBut"
  40. exeBut.Parent = MainFrame
  41. exeBut.BackgroundColor3 = Color3.new(0.266667, 0.266667, 0.266667)
  42. exeBut.BackgroundTransparency = 0.10000000149012
  43. exeBut.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  44. exeBut.BorderSizePixel = 2
  45. exeBut.Position = UDim2.new(0.0327272527, 0, 0.83157891, 0)
  46. exeBut.Size = UDim2.new(0.245925769, 0, 0.130999997, 0)
  47. exeBut.Font = Enum.Font.SourceSans
  48. exeBut.Text = "Execute"
  49. exeBut.TextScaled = true
  50. exeBut.TextColor3 = Color3.new(0.807843, 0.807843, 0.807843)
  51. exeBut.TextSize = 14
  52.  
  53. clearBut.Name = "clearBut"
  54. clearBut.Parent = MainFrame
  55. clearBut.BackgroundColor3 = Color3.new(0.266667, 0.266667, 0.266667)
  56. clearBut.BackgroundTransparency = 0.10000000149012
  57. clearBut.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  58. clearBut.BorderSizePixel = 2
  59. clearBut.Position = UDim2.new(0.313321859, 0, 0.83157891, 0)
  60. clearBut.Size = UDim2.new(0.245765775, 0, 0.131095916, 0)
  61. clearBut.Font = Enum.Font.SourceSans
  62. clearBut.Text = "Clear"
  63. clearBut.TextScaled = true
  64. clearBut.TextColor3 = Color3.new(0.807843, 0.807843, 0.807843)
  65. clearBut.TextSize = 14
  66.  
  67. TextLabel.Parent = MainFrame
  68. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  69. TextLabel.BackgroundTransparency = 1
  70. TextLabel.Position = UDim2.new(0.633699536, 0, 0.828526199, 0)
  71. TextLabel.Size = UDim2.new(0.319540918, 0, 0.130999997, 0)
  72. TextLabel.Font = Enum.Font.SourceSans
  73. TextLabel.Text = "Argonaut IG"
  74. TextLabel.TextColor3 = Color3.new(0, 0, 0.113725)
  75. TextLabel.TextScaled = true
  76. TextLabel.TextSize = 14
  77. TextLabel.TextWrapped = true
  78.  
  79. local exeBut = exeBut
  80. local clearBut = clearBut
  81. local console = Console
  82. local frame = MainFrame
  83.  
  84. frame.Draggable = true
  85. frame.Active = true
  86.  
  87. exeBut.MouseButton1Down:Connect(function()
  88. loadstring(console.Text)()
  89. end)
  90.  
  91. clearBut.MouseButton1Down:Connect(function()
  92. console.Text = ""
  93. end)
Add Comment
Please, Sign In to add comment