artbarte

CBRO Teleport Kill Everyone

Jul 26th, 2017
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. local Players = Game.Players:GetPlayers()
  2. for i = 1, #Players do
  3. local v = Players[i]
  4. if v.Character and Game.Players.LocalPlayer.Character.Torso and v.Name ~= Game.Players.LocalPlayer.Name and v.TeamColor ~= Game.Players.LocalPlayer.TeamColor then
  5. local x = v.Character:FindFirstChild('Right Leg')
  6. if x then
  7. x.Anchored = true
  8. x.CFrame = Game.Players.LocalPlayer.Character.Torso.CFrame + Vector3.new(0, 0, 4)
  9. end
  10. end
  11. end
Add Comment
Please, Sign In to add comment