Advertisement
Guest User

Arsenal Aimbot GUI

a guest
Jul 3rd, 2019
37,571
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local GUI = Instance.new("Frame")
  3. local EZ = Instance.new("TextLabel")
  4. local ESP = Instance.new("TextButton")
  5. local GODMODE = Instance.new("TextButton")
  6. local CLOSE = Instance.new("TextButton")
  7. --Properties:
  8. ScreenGui.Parent = game.CoreGui
  9. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10.  
  11. GUI.Name = "GUI"
  12. GUI.Parent = ScreenGui
  13. GUI.BackgroundColor3 = Color3.new(1, 1, 1)
  14. GUI.BackgroundTransparency = 0.5
  15. GUI.Position = UDim2.new(0, 0, 0.481770843, 0)
  16. GUI.Size = UDim2.new(0, 100, 0, 100)
  17.  
  18. EZ.Name = "EZ"
  19. EZ.Parent = GUI
  20. EZ.BackgroundColor3 = Color3.new(1, 1, 1)
  21. EZ.BackgroundTransparency = 1
  22. EZ.Position = UDim2.new(-0.510000229, 0, -0.149999991, 0)
  23. EZ.Size = UDim2.new(0, 200, 0, 50)
  24. EZ.Font = Enum.Font.SourceSans
  25. EZ.Text = "BLACK KFC"
  26. EZ.TextColor3 = Color3.new(0, 0, 0)
  27. EZ.TextSize = 24
  28.  
  29. ESP.Name = "ESP"
  30. ESP.Parent = GUI
  31. ESP.BackgroundColor3 = Color3.new(1, 1, 1)
  32. ESP.BackgroundTransparency = 1
  33. ESP.Position = UDim2.new(0.0399999619, 0, 0.699999988, 0)
  34. ESP.Size = UDim2.new(0, 91, 0, 30)
  35. ESP.Font = Enum.Font.SourceSans
  36. ESP.Text = "ESP"
  37. ESP.TextColor3 = Color3.new(0, 0, 0)
  38. ESP.TextSize = 16
  39. ESP.MouseButton1Click:connect(function()
  40. spawn(loadstring(game:HttpGet("https://pastebin.com/raw/zKjj0TQD", true)))()
  41. end)
  42.  
  43. GODMODE.Name = "GODMODE"
  44. GODMODE.Parent = GUI
  45. GODMODE.BackgroundColor3 = Color3.new(1, 1, 1)
  46. GODMODE.BackgroundTransparency = 1
  47. GODMODE.Position = UDim2.new(0.0399999619, 0, 0.349999994, 0)
  48. GODMODE.Size = UDim2.new(0, 91, 0, 30)
  49. GODMODE.Font = Enum.Font.SourceSans
  50. GODMODE.Text = "GODMODE"
  51. GODMODE.TextColor3 = Color3.new(0, 0, 0)
  52. GODMODE.TextSize = 16
  53. GODMODE.MouseButton1Click:connect(function()
  54. game.Players.LocalPlayer.Character.Damage:Destroy()
  55.  
  56. end)
  57.  
  58. CLOSE.Name = "CLOSE"
  59. CLOSE.Parent = GUI
  60. CLOSE.BackgroundColor3 = Color3.new(1, 1, 1)
  61. CLOSE.BackgroundTransparency = 1
  62. CLOSE.Position = UDim2.new(0.310000032, 0, 1, 0)
  63. CLOSE.Size = UDim2.new(0, 38, 0, 30)
  64. CLOSE.Font = Enum.Font.SourceSans
  65. CLOSE.Text = "KILL GUI"
  66. CLOSE.TextColor3 = Color3.new(0, 0, 0)
  67. CLOSE.TextSize = 16
  68. CLOSE.MouseButton1Click:connect(function()
  69. GUI.Visible = false
  70. end)
  71.  
  72. -- credits
  73. print("ESP CREATED BY Zeta#5669")
  74. print("GOD MODE CREATED BY Jesus#4811")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement