Advertisement
MajorLeagueGamingHax

ok so this is a test dont us pls

Oct 13th, 2018
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  1. -- Instances:
  2. local Yeet = Instance.new("ScreenGui")
  3. local Main = Instance.new("Frame")
  4. local Scripts = Instance.new("Frame")
  5. local Dab = Instance.new("TextButton")
  6. local killaura = Instance.new("TextButton")
  7. local nopassing = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. --Properties:
  10. Yeet.Name = "Yeet"
  11. Yeet.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12.  
  13. Main.Name = "Main"
  14. Main.Parent = Yeet
  15. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Main.Position = UDim2.new(0.0296950247, 0, 0.0360824727, 0)
  17. Main.Size = UDim2.new(0, 223, 0, 225)
  18. Main.Style = Enum.FrameStyle.DropShadow
  19. Main.Active = true
  20. Main.Draggable = true
  21.  
  22. Scripts.Name = "Scripts"
  23. Scripts.Parent = Main
  24. Scripts.BackgroundColor3 = Color3.new(0, 0, 0)
  25. Scripts.BackgroundTransparency = 0.5
  26. Scripts.BorderSizePixel = 0
  27. Scripts.Position = UDim2.new(0, 0, 0.24000001, 0)
  28. Scripts.Size = UDim2.new(0, 208, 0, 157)
  29.  
  30. Dab.Name = "Dab"
  31. Dab.Parent = Scripts
  32. Dab.BackgroundColor3 = Color3.new(1, 1, 1)
  33. Dab.Position = UDim2.new(0.016902063, 0, 0.649432898, 0)
  34. Dab.Size = UDim2.new(0, 200, 0, 50)
  35. Dab.Style = Enum.ButtonStyle.RobloxRoundButton
  36. Dab.Font = Enum.Font.Cartoon
  37. Dab.Text = "Dab"
  38. Dab.TextColor3 = Color3.new(1, 1, 1)
  39. Dab.TextSize = 14
  40.  
  41. Dab.MouseButton1Down:connect(function()
  42. _G.hotkey = 'b'
  43. loadstring(game:GetObjects('rbxassetid://451302106')[1].Source)()
  44. end)
  45.  
  46. killaura.Name = "killaura"
  47. killaura.Parent = Scripts
  48. killaura.BackgroundColor3 = Color3.new(1, 1, 1)
  49. killaura.Position = UDim2.new(0.0124177588, 0, -0.00292640924, 0)
  50. killaura.Size = UDim2.new(0, 200, 0, 50)
  51. killaura.Style = Enum.ButtonStyle.RobloxRoundButton
  52. killaura.Font = Enum.Font.Cartoon
  53. killaura.Text = "Kill Aura"
  54. killaura.TextColor3 = Color3.new(1, 1, 1)
  55. killaura.TextSize = 14
  56.  
  57. killaura.MouseButton1Down:connect(function()
  58. while wait(0.1) do
  59. for i, plr in pairs(game.Players:GetChildren()) do
  60. if plr.Name ~= game.Players.LocalPlayer.Name then
  61. for i = 1, 10 do
  62. game.ReplicatedStorage.meleeEvent:FireServer(plr)
  63. end
  64. end
  65. end
  66. end
  67. end)
  68.  
  69. nopassing.Name = "nopassing"
  70. nopassing.Parent = Scripts
  71. nopassing.BackgroundColor3 = Color3.new(1, 1, 1)
  72. nopassing.Position = UDim2.new(0.016902063, 0, 0.323253214, 0)
  73. nopassing.Size = UDim2.new(0, 200, 0, 50)
  74. nopassing.Style = Enum.ButtonStyle.RobloxRoundButton
  75. nopassing.Font = Enum.Font.Cartoon
  76. nopassing.Text = "You shall not pass!"
  77. nopassing.TextColor3 = Color3.new(1, 1, 1)
  78. nopassing.TextSize = 14
  79.  
  80. nopassing.MouseButton1Down:connect(function()
  81. local s = Instance.new("Sound")
  82.  
  83. s.Name = "Sound"
  84. s.SoundId = "http://www.roblox.com/asset/?id=154376403"
  85. s.Volume = 100
  86. s.Pitch = 1
  87. s.Looped = false
  88. s.archivable = false
  89.  
  90. s.Parent = game.Workspace
  91.  
  92. wait(0)
  93.  
  94. s:play()
  95.  
  96. wait(4)
  97.  
  98. expld = Instance.new("Explosion", Workspace)
  99. expld.BlastRadius = 10000
  100. expld.BlastPressure = 10000
  101. expld.Position = game.Workspace.MajorLeagueGamingHax.Head.Position
  102.  
  103. end)
  104.  
  105.  
  106. TextLabel.Parent = Main
  107. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  108. TextLabel.BackgroundTransparency = 1
  109. TextLabel.Position = UDim2.new(-0.0224215239, 0, -0.0355555564, 0)
  110. TextLabel.Size = UDim2.new(0, 217, 0, 57)
  111. TextLabel.Font = Enum.Font.Cartoon
  112. TextLabel.Text = "Yeet"
  113. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  114. TextLabel.TextScaled = true
  115. TextLabel.TextSize = 14
  116. TextLabel.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement