Advertisement
Greasy123456

Murderer Vs Sheriff

Jun 12th, 2024
5,067
-1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 1
  1. -- Slash or Throw
  2. local way = "Throw"
  3. local target
  4.  
  5. while true do
  6. task.wait()
  7. pcall(function()
  8. repeat
  9. target = game:GetService("Players"):GetPlayers()[math.random(#game:GetService("Players"):GetPlayers())]
  10. until target.Team == game:GetService("Teams").Sheriffs
  11. if target.Character:FindFirstChild("Head") then
  12. if target.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  13. game:GetService("Players").LocalPlayer.Character.Knife.Damage:FireServer(target.Character.UpperTorso,way)
  14. else
  15. game:GetService("Players").LocalPlayer.Character.Knife.Damage:FireServer(target.Character.HumanoidRootPart,way)
  16. end
  17. end
  18. end)
  19. end
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement