Advertisement
Guest User

Untitled

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