Advertisement
MajorLeagueGamingHax

i tried

Jun 17th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. wait(2)
  2. -- Farewell Infortality.
  3. -- Version: 2.82
  4. -- Instances:
  5. local spamgui = Instance.new("ScreenGui")
  6. local frame1 = Instance.new("Frame")
  7. local spawnbutton = Instance.new("TextButton")
  8. local title = Instance.new("TextLabel")
  9. local line1 = Instance.new("Frame")
  10. local godbutton = Instance.new("TextButton")
  11. local explodebutton = Instance.new("TextButton")
  12. local player = game.Workspace.MajorLeagueGamingHax
  13. local hum = player.Humanoid
  14. --Properties:
  15. spamgui.Name = "spamgui"
  16. spamgui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  17.  
  18. frame1.Name = "frame1"
  19. frame1.Parent = spamgui
  20. frame1.BackgroundColor3 = Color3.new(0.145098, 0.145098, 0.145098)
  21. frame1.BorderColor3 = Color3.new(1, 1, 1)
  22. frame1.BorderSizePixel = 3
  23. frame1.Position = UDim2.new(0.0219952744, 0, 0.037447989, 0)
  24. frame1.Size = UDim2.new(0, 150, 0, 200)
  25.  
  26. spawnbutton.Name = "spawnbutton"
  27. spawnbutton.Parent = frame1
  28. spawnbutton.BackgroundColor3 = Color3.new(0.145098, 0.145098, 0.145098)
  29. spawnbutton.BorderColor3 = Color3.new(1, 1, 1)
  30. spawnbutton.BorderSizePixel = 3
  31. spawnbutton.Position = UDim2.new(0.160000086, 0, 0.198000133, 0)
  32. spawnbutton.Size = UDim2.new(0, 100, 0, 25)
  33. spawnbutton.Font = Enum.Font.Gotham
  34. spawnbutton.Text = "Spawn Brick"
  35. spawnbutton.TextColor3 = Color3.new(1, 1, 1)
  36. spawnbutton.TextSize = 14
  37.  
  38. title.Name = "title"
  39. title.Parent = frame1
  40. title.BackgroundColor3 = Color3.new(1, 1, 1)
  41. title.BackgroundTransparency = 1
  42. title.BorderSizePixel = 0
  43. title.Size = UDim2.new(0, 150, 0, 20)
  44. title.Font = Enum.Font.Gotham
  45. title.Text = "expand dong"
  46. title.TextColor3 = Color3.new(1, 1, 1)
  47. title.TextSize = 14
  48.  
  49. line1.Name = "line1"
  50. line1.Parent = frame1
  51. line1.BackgroundColor3 = Color3.new(1, 1, 1)
  52. line1.BorderSizePixel = 0
  53. line1.Position = UDim2.new(0.161633939, 0, 0.0996047407, 0)
  54. line1.Size = UDim2.new(0, 100, 0, 1)
  55.  
  56. godbutton.Name = "godbutton"
  57. godbutton.Parent = frame1
  58. godbutton.BackgroundColor3 = Color3.new(0.145098, 0.145098, 0.145098)
  59. godbutton.BorderColor3 = Color3.new(1, 1, 1)
  60. godbutton.BorderSizePixel = 3
  61. godbutton.Position = UDim2.new(0.153333366, 0, 0.644666791, 0)
  62. godbutton.Size = UDim2.new(0, 100, 0, 25)
  63. godbutton.Font = Enum.Font.Gotham
  64. godbutton.Text = "Explode"
  65. godbutton.TextColor3 = Color3.new(1, 1, 1)
  66. godbutton.TextSize = 14
  67.  
  68. explodebutton.Name = "explodebutton"
  69. explodebutton.Parent = frame1
  70. explodebutton.BackgroundColor3 = Color3.new(0.145098, 0.145098, 0.145098)
  71. explodebutton.BorderColor3 = Color3.new(1, 1, 1)
  72. explodebutton.BorderSizePixel = 3
  73. explodebutton.Position = UDim2.new(0.160000011, 0, 0.419666767, 0)
  74. explodebutton.Size = UDim2.new(0, 100, 0, 25)
  75. explodebutton.Font = Enum.Font.Gotham
  76. explodebutton.Text = "Explode"
  77. explodebutton.TextColor3 = Color3.new(1, 1, 1)
  78. explodebutton.TextSize = 14
  79. -- Scripts:
  80.  
  81. explodebutton.MouseButton1Down:connect(function()
  82. local explode = Instance.new("Explosion")
  83. explode.Parent = game.Workspace.MajorLeagueGamingHax.Head
  84. end)
  85.  
  86. spawnbutton.MouseButton1Down:connect(function()
  87. local brick = Instance.new("Part")
  88. brick.Parent = workspace
  89. print("spam")
  90. end)
  91.  
  92. godbutton.MouseButton1Down:connect(function()
  93. game.Workspace.MajorLeagueGamingHax.Humanoid.Name = "hax"
  94. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement