Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. local screen = Instance.new("ScreenGui")
  2. local frame = Instance.new("Frame")
  3. local input = Instance.new("TextBox")
  4. local kill = Instance.new("TextButton")
  5. local spamkill = Instance.new("TextButton")
  6. local spamkillinput = Instance.new("TextLabel")
  7. local god = Instance.new("TextButton")
  8. local godinput = Instance.new("TextLabel")
  9. local rocket = Instance.new("TextButton")
  10.  
  11. screen.Parent = game.Players.LocalPlayer.PlayerGui
  12. screen.Name = "Abuse Gui"
  13.  
  14. frame.Parent = screen
  15. frame.Position = UDim2.new(0, 0, 0, 400)
  16. frame.BackgroundColor3 = Color3.new(126, 126, 126)
  17. frame.Size = UDim2.new(0, 230, 0, 100)
  18.  
  19. input.Parent = frame
  20. input.Position = UDim2.new(0, 10, 0, 10)
  21. input.Size = UDim2.new(0, 165, 0, 50)
  22. input.Text = "Name"
  23. input.Name = "input"
  24.  
  25. kill.Parent = frame
  26. kill.Position = UDim2.new(0, 0, 0, 70)
  27. kill.Size = UDim2.new(0, 50, 0, 30)
  28. kill.Text = "Kill"
  29. kill.Name = "Kill Button"
  30. kill.MouseButton1Click:connect(function(player)
  31. workspace[input.Text].Humanoid.Health = 0
  32. end)
  33.  
  34. spamkillinput.Parent = frame
  35. spamkillinput.Visible = false
  36. spamkillinput.Text = ""
  37. spamkillinput.Name = "spamkillinput"
  38.  
  39. spamkill.Parent = frame
  40. spamkill.Position = UDim2.new(0, 180, 0, 70)
  41. spamkill.Size = UDim2.new(0, 50, 0, 30)
  42. spamkill.Text = "Kill"
  43. spamkill.Name = "Kill Button"
  44. spamkill.MouseButton1Click:connect(function(player)
  45. spamkillinput.Name = input.Text
  46. while true do
  47. wait()
  48. workspace[spamkillinput.Text].Humanoid.Health = 0
  49. end
  50. end)
  51.  
  52. godinput.Parent = frame
  53. godinput.Visible = false
  54. godinput.Text = ""
  55. godinput.Name = "godinput"
  56.  
  57. god.Parent = frame
  58. god.Position = UDim2.new(0, 60, 0, 70)
  59. god.Size = UDim2.new(0, 50, 0, 30)
  60. god.Text = "God"
  61. god.Name = "God Button"
  62. god.MouseButton1Click:connect(function(player)
  63. godinput.Text = input.Text
  64. workspace[godinput.Text].Humanoid.MaxHealth = 99999
  65. while true do
  66. wait()
  67. workspace[godinput.Text].Humanoid.Health = 99998
  68. end
  69. end)
  70.  
  71. rocket.Parent = frame
  72. rocket.Position = UDim2.new(0, 120, 0, 70)
  73. rocket.Size = UDim2.new(0, 50, 0, 30)
  74. rocket.Text = "Rocket"
  75. rocket.Name = "Rocket Button"
  76. rocket.MouseButton1Click:connect(function(player)
  77. local fire = Instance.new("BodyForce")
  78. fire.Parent = workspace[input.Text].Torso
  79. fire.Force = Vector3.new(0, 100000, 0)
  80. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement