Advertisement
Guest User

Pirate Conquest

a guest
Mar 19th, 2019
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. --[[ Credits: FunTratOr | DarkDevs ]]
  2. local mobname = "Pirate" -- Mob Name Here
  3. local target; local mob = {}; local plr = game.Players.LocalPlayer
  4. while wait() do
  5. plr.Character.HumanoidRootPart.Anchored = false
  6. mob = game.Workspace['NPC/PLAYER']:GetChildren()
  7. for i,v in pairs(mob) do
  8. if v.Name == mobname then
  9. target = mob[i]
  10. wait()
  11. repeat
  12. plr.Character.HumanoidRootPart.CFrame = CFrame.new(v.HumanoidRootPart.Position + Vector3.new(0,1,5),v.HumanoidRootPart.Position)
  13. local Path = game:GetService("Workspace")["NPC/PLAYER"][game.Players.LocalPlayer.Name].Combat.M.Damage
  14. Path:FireServer()
  15. -- The Most Iconic Move That Can't Kill A ANT Itself!!!
  16. wait()
  17. until v.Humanoid.Health == 0
  18. end
  19. end
  20. end
  21. warn('Game Sucks Anyways!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement