Advertisement
kebbyfan

Untitled

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