Advertisement
Dodikman

r

Mar 3rd, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. local plr = game.Players:FindFirstChild("Ayee_Banditz")
  2. while wait() do
  3. local currentPart = nil
  4. for _, v in pairs(game.Workspace:GetChildren()) do
  5. if v:FindFirstChild("HumanoidRootPart") then
  6. if v.Name ~= plr.Name then
  7. v:FindFirstChild("HumanoidRootPart").Anchored = true
  8. v:MoveTo(Vector3.new(plr.Character.HumanoidRootPart.Position.X, plr.Character.HumanoidRootPart.Position.Y, plr.Character.HumanoidRootPart.Position.Z))
  9. end
  10. end
  11. end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement