Advertisement
Idirina

walk torwards

Jan 6th, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. local target = "fatimeturk39312"
  2. local jump = false
  3. local sit = false
  4.  
  5. while true do
  6. for i,v in pairs(game.Players:GetChildren()) do
  7. pcall(function()
  8. if v ~= game.Players:FindFirstChild(target) then
  9. v.Character.Humanoid:MoveTo(game.Players:FindFirstChild(target).Character.Head.Position)
  10. if jump then
  11. v.Character.Humanoid.Jump = true
  12. end
  13. if sit then
  14. v.Character.Humanoid.Sit = true
  15. end
  16. end
  17. end)
  18. end
  19. wait()
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement