Advertisement
Guest User

Silent aim

a guest
Sep 22nd, 2019
13,008
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. print("a")
  2. function getplrsname()
  3. for i,v in pairs(game:GetChildren()) do
  4. if v.ClassName == "Players" then
  5. return v.Name
  6. end
  7. end
  8. end
  9. local players = getplrsname()
  10. local plr = game[players].LocalPlayer
  11.  
  12. while wait(1) do
  13. coroutine.resume(coroutine.create(function()
  14. for _,v in pairs(game[players]:GetPlayers()) do
  15. if v.Name ~= plr.Name and v.Character then
  16. v.Character.Head.CanCollide = false
  17. v.Character.Head.Color = Color3.fromRGB(0,255,0)
  18. v.Character.Head.Material = "Neon"
  19. v.Character.Head.Size = Vector3.new(6.1,6.1,6.1) --this is the max
  20. end
  21. end
  22. end))
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement