Advertisement
scripthubzz

kill farmer fencing

May 13th, 2021
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. local LP = game:GetService("Players").LocalPlayer
  2. while wait(0.1) do
  3. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4. if v and v.Character and v ~= LP and v.Character:FindFirstChild("Head") then
  5. local hrp = v.Character:FindFirstChild("Head") --// I thought of using humanoidrootpart first but it works better with the head!
  6. hrp:BreakJoints()
  7. hrp.Transparency = 0
  8. hrp.BrickColor = v.TeamColor
  9. hrp.Anchored = true
  10. hrp.CanCollide = false
  11. pcall(function()
  12. hrp.CFrame = LP.Character.HumanoidRootPart.CFrame * CFrame.new(1,0,-3.5)
  13. end)
  14. end
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement