nhokp

true slaying

Feb 21st, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  2.  
  3. while true do
  4. local mobs = game.workspace.Enemies.Assassins:GetChildren() --CHANG ASSASSINS TO THE MOB YOU WANT
  5. for i, v in pairs(mobs) do
  6. repeat
  7. player.CFrame = (v.HumanoidRootPart.CFrame * CFrame.new(0, 0, 3))
  8. mouse1click()
  9. wait()
  10. until
  11. v.Humanoid.Health == 0
  12. end
  13. wait(1)
  14. end
Add Comment
Please, Sign In to add comment