Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. Code:
  2. --[[ FE Kill V5 | No tools needed!
  3. Script made by Cyclically
  4. Credits to dhruvil123 (Same method but uses tools)
  5. https://v3rmillion.net/member.php?action=profile&uid=785986
  6. MAKE SURE THE GAME HAS PLAYER COLLISION
  7. IF U GET KICKED IT MEANS ITS PATCHED
  8. ]]
  9.  
  10. local targetname = ""
  11.  
  12. -- Don't edit script unless you know what you're doing. If you wanna add this into a script, please give credits and message me on discord that you added it in a script at Cyclically#4905
  13.  
  14. local LocalPlayer = game:GetService("Players").LocalPlayer
  15. local target = game:GetService("Players")[targetname]
  16. local torsoname = "Torso"
  17. if LocalPlayer.Character:FindFirstChild("Humanoid").RigType == Enum.HumanoidRigType.R15 then
  18. torsoname = "UpperTorso"
  19. end
  20. if target.Character ~= nil then
  21. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  22. LocalPlayer.Character:FindFirstChild(torsoname).Anchored = true
  23. local tool = Instance.new("Tool", LocalPlayer.Backpack)
  24. local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  25. local hathandle = hat.Handle
  26. hathandle.Parent = tool
  27. hathandle.Massless = true
  28. tool.GripPos = Vector3.new(0, 9e99, 0)
  29. tool.Parent = LocalPlayer.Character
  30. repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  31. tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  32. LocalPlayer.Character:FindFirstChild(torsoname).Anchored = false
  33. repeat
  34. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = target.Character:FindFirstChild("HumanoidRootPart").CFrame
  35. wait()
  36. 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)
  37. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  38. hathandle.Parent = hat
  39. hathandle.Massless = false
  40. tool:Destroy()
  41. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  42. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement