Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. print"Shortened By KingEzz, Script By: Someone On V3RM"
  2. -- Objects << Stuff
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local KillAll = Instance.new("TextButton")
  7.  
  8.  
  9. -- Properties
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.Active = true
  15. Frame.BackgroundColor3 = Color3.new(0.5, 0.2, 0.2)
  16. Frame.BackgroundTransparency = 0.1
  17. Frame.BorderSizePixel = 0
  18. Frame.Draggable = true
  19. Frame.Position = UDim2.new(0.3, 0, 0.366541356, 0)
  20. Frame.Size = UDim2.new(0, 45, 0, 10)
  21.  
  22. -- Functions
  23.  
  24. KillAll.Name = "1shot" -- here
  25. KillAll.Parent = Frame
  26. KillAll.BackgroundColor3 = Color3.new(0.0352941, 0.188235, 0.168627)
  27. KillAll.BorderSizePixel = 0
  28. KillAll.Position = UDim2.new(0, 0, 0.606060624, 0)
  29. KillAll.Size = UDim2.new(0, 45, 0, 13)
  30. KillAll.Font = Enum.Font.ArialBold
  31. KillAll.FontSize = Enum.FontSize.Size14
  32. KillAll.Text = "Instant Kill"
  33. KillAll.TextColor3 = Color3.new(5, 1, 1)
  34. KillAll.TextScaled = true
  35. KillAll.TextSize = 14
  36. KillAll.TextWrapped = true
  37. KillAll.MouseButton1Click:connect(function()
  38. for i,v in pairs(game.Workspace:GetChildren()) do
  39. if v.Name == game.Players.LocalPlayer.Name then else
  40. for i = 1, 50 do
  41. spawn(function()
  42. game.Players.LocalPlayer.keyinput:FireServer("combat", v)
  43. end)
  44. end
  45. end
  46. end
  47. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement