FuZe_Bleed

Aimbot

Dec 13th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. for i,player in pairs(game:GetService('Players'):GetPlayers()) do
  2. if player.TeamColor ~= game:GetService('Players').LocalPlayer.TeamColor then
  3. local weld = Instance.new('Weld',player.Character.Torso)
  4. local part = Instance.new('Part',player.Character)
  5. part.Size = Vector3.new(150,150,150)
  6. part.Material = "Neon"
  7. part.BrickColor = BrickColor.new('Really red')
  8. part.CFrame = player.Character.Torso.CFrame
  9. part.CanCollide = false
  10. part.Transparency = 0 -- Set this to 0 if you want to see gigantic red targets --
  11. weld.C0 = player.Character.Torso.CFrame:inverse()
  12. weld.Part0 = player.Character.Torso
  13. weld.C1 = part.CFrame:inverse()
  14. weld.Part1 = part
  15. end
  16. end
Add Comment
Please, Sign In to add comment