Xen_YT

MY ARSENAL AIMBOT GUI

May 11th, 2020
985
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3. -- Created By Spixxy
  4.  
  5. -- Instances:
  6.  
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local OpenFrame = Instance.new("Frame")
  9. local Open = Instance.new("TextButton")
  10. local Main = Instance.new("Frame")
  11. local AIMBOT = Instance.new("TextButton")
  12. local ESP = Instance.new("TextButton")
  13. local TextLabel = Instance.new("TextLabel")
  14. local TextLabel_2 = Instance.new("TextLabel")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.CoreGui
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. OpenFrame.Name = "Open Frame"
  22. OpenFrame.Parent = ScreenGui
  23. OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. OpenFrame.Position = UDim2.new(0, 0, 0.566473961, 0)
  25. OpenFrame.Size = UDim2.new(0, 100, 0, 35)
  26.  
  27. Open.Name = "Open"
  28. Open.Parent = OpenFrame
  29. Open.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
  30. Open.Size = UDim2.new(0, 100, 0, 35)
  31. Open.Font = Enum.Font.SourceSans
  32. Open.Text = "Open"
  33. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  34. Open.TextSize = 22.000
  35. Open.MouseButton1Down:connect(function()
  36. Main.Visible = true
  37. OpenFrame.Visible = false
  38. end)
  39.  
  40. Main.Name = "Main"
  41. Main.Parent = ScreenGui
  42. Main.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
  43. Main.Size = UDim2.new(0, 330, 0, 198)
  44. Main.Visible = false
  45.  
  46. AIMBOT.Name = "AIMBOT"
  47. AIMBOT.Parent = Main
  48. AIMBOT.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  49. AIMBOT.BorderColor3 = Color3.fromRGB(0, 0, 0)
  50. AIMBOT.Position = UDim2.new(0.183436096, 0, 0.189064562, 0)
  51. AIMBOT.Size = UDim2.new(0, 208, 0, 58)
  52. AIMBOT.Font = Enum.Font.SourceSans
  53. AIMBOT.Text = "AIMBOT (HOLD CTRL)"
  54. AIMBOT.TextColor3 = Color3.fromRGB(255, 255, 255)
  55. AIMBOT.TextSize = 14.000
  56. AIMBOT.MouseButton1Down:connect(function()
  57. loadstring(game:GetObjects('rbxassetid://340856112')[1].Source)()
  58.  
  59. wait()
  60.  
  61. _G.FREE_FOR_ALL = false
  62.  
  63. _G.BIND = 50 -- LEFT CTRL
  64. _G.ESP_BIND = 52 -- LEFT ALT
  65. end)
  66.  
  67. ESP.Name = "ESP"
  68. ESP.Parent = Main
  69. ESP.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  70. ESP.BorderColor3 = Color3.fromRGB(0, 0, 0)
  71. ESP.Position = UDim2.new(0.183436081, 0, 0.527448416, 0)
  72. ESP.Size = UDim2.new(0, 208, 0, 57)
  73. ESP.Font = Enum.Font.SourceSans
  74. ESP.Text = "ESP (ALT)"
  75. ESP.TextColor3 = Color3.fromRGB(255, 255, 255)
  76. ESP.TextSize = 14.000
  77.  
  78. TextLabel.Parent = Main
  79. TextLabel.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  80. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  81. TextLabel.Position = UDim2.new(9.31322575e-10, 0, 0, 0)
  82. TextLabel.Size = UDim2.new(0, 330, 0, 29)
  83. TextLabel.Font = Enum.Font.SourceSans
  84. TextLabel.Text = "Spixxy#6147"
  85. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  86. TextLabel.TextSize = 14.000
  87.  
  88. TextLabel_2.Parent = Main
  89. TextLabel_2.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  90. TextLabel_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  91. TextLabel_2.Position = UDim2.new(0, 0, 0.858585835, 0)
  92. TextLabel_2.Size = UDim2.new(0, 330, 0, 28)
  93. TextLabel_2.Font = Enum.Font.SourceSans
  94. TextLabel_2.Text = "https://discord.gg/D95vWzE"
  95. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  96. TextLabel_2.TextSize = 14.000
Add Comment
Please, Sign In to add comment