Advertisement
Guest User

FE KILL BY MEEPEEP1234

a guest
Mar 19th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.30 KB | None | 0 0
  1.  
  2. local lplayer = game:GetService('Players').LocalPlayer
  3.  
  4. local killing = false
  5. function GetPlayer(String)
  6. local Found = {}
  7. local strl = String:lower()
  8. if strl == "all" then
  9. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  10. table.insert(Found,v)
  11. end
  12. elseif strl == "others" then
  13. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  14. if v.Name ~= lplayer.Name then
  15. table.insert(Found,v)
  16. end
  17. end
  18. elseif strl == "me" then
  19. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  20. if v.Name == lplayer.Name then
  21. table.insert(Found,v)
  22. end
  23. end
  24. else
  25. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  26. if v.Name:lower():sub(1, #String) == String:lower() then
  27. table.insert(Found,v)
  28. end
  29. end
  30. end
  31. return Found
  32. end
  33. function ahh(thing)
  34. local asd = {'kill','gui','kill gui'}
  35. local f = string.upper(asd[math.random(1,#asd)])
  36. return f
  37. end
  38. ScreenGui = Instance.new("ScreenGui")
  39. main = Instance.new("Frame")
  40. TextLabel = Instance.new("TextLabel")
  41. Player = Instance.new("TextBox")
  42. kill = Instance.new("TextButton")
  43.  
  44. ScreenGui.Parent = game.CoreGui
  45. main.Name = "main"
  46. main.Parent = ScreenGui
  47. main.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  48. main.Position = UDim2.new(0.780606031, 0, 0.548271775, 0)
  49. main.Size = UDim2.new(0, 326, 0, 212)
  50. main.Active = true
  51. main.Draggable = true
  52.  
  53. TextLabel.Parent = main
  54. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  55. TextLabel.BackgroundTransparency = 1
  56. TextLabel.Size = UDim2.new(0, 326, 0, 50)
  57. TextLabel.Font = Enum.Font.SourceSansItalic
  58. TextLabel.FontSize = Enum.FontSize.Size28
  59. TextLabel.Text = "FEKILL BY MEEPEEP1234"
  60. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  61. TextLabel.TextSize = 25
  62. TextLabel.TextStrokeTransparency = 0
  63.  
  64. Player.Name = "Player"
  65. Player.Parent = main
  66. Player.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  67. Player.BorderColor3 = Color3.new(0.509804, 0.509804, 0.509804)
  68. Player.BorderSizePixel = 3
  69. Player.Position = UDim2.new(0.193251535, 0, 0.316037744, 0)
  70. Player.Size = UDim2.new(0, 200, 0, 50)
  71. Player.Font = Enum.Font.SourceSans
  72. Player.FontSize = Enum.FontSize.Size14
  73. Player.Text = ""
  74. Player.TextColor3 = Color3.new(0, 0, 0)
  75. Player.TextSize = 14
  76.  
  77. kill.Name = "fuck em up"
  78. kill.Parent = main
  79. kill.BackgroundColor3 = Color3.new(0.52549, 0.52549, 0.52549)
  80. kill.Position = UDim2.new(0.193251535, 0, 0.613207519, 0)
  81. kill.Size = UDim2.new(0, 200, 0, 50)
  82. kill.FontSize = Enum.FontSize.Size14
  83. kill.Text = "FUCK EM UP"
  84. kill.TextColor3 = Color3.new(0, 0, 0)
  85. kill.TextSize = 14
  86. kill.MouseButton1Down:connect(function()
  87. for i,v in pairs(GetPlayer(Player.Text)) do
  88.  
  89.  
  90.  
  91. local LocalPlayer = game:GetService("Players").LocalPlayer
  92. local target = game:GetService("Players")[v.Name]
  93. local torsoname = "Torso"
  94. if LocalPlayer.Character:FindFirstChild("Humanoid").RigType == Enum.HumanoidRigType.R15 then
  95. torsoname = "UpperTorso"
  96. end
  97. if target.Character ~= nil then
  98. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  99. LocalPlayer.Character:FindFirstChild(torsoname).Anchored = true
  100. local tool = Instance.new("Tool", LocalPlayer.Backpack)
  101. local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  102. local hathandle = hat.Handle
  103. hathandle.Parent = tool
  104. hathandle.Massless = true
  105. tool.GripPos = Vector3.new(0, 9e99, 0)
  106. tool.Parent = LocalPlayer.Character
  107. repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  108. tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  109. LocalPlayer.Character:FindFirstChild(torsoname).Anchored = false
  110. repeat
  111. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = target.Character:FindFirstChild("HumanoidRootPart").CFrame
  112. wait()
  113. until target.Character == nil or target.Character:FindFirstChild("Humanoid").Health <= 0 or LocalPlayer.Character == nil or LocalPlayer.Character:FindFirstChild("Humanoid").Health <= 0 or (target.Character:FindFirstChild("HumanoidRootPart").Velocity.magnitude - target.Character:FindFirstChild("Humanoid").WalkSpeed) > (target.Character:FindFirstChild("Humanoid").WalkSpeed + 20)
  114. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  115. hathandle.Parent = hat
  116. hathandle.Massless = false
  117. tool:Destroy()
  118. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  119. end
  120. end
  121. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement