Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. local plrs = game:GetService("Players")
  2. local lplr = plrs.LocalPlayer
  3. while wait(.2) do
  4. for _, v in pairs(plrs:GetPlayers()) do
  5. if tostring(v.Name) ~= tostring(lplr.Name) then
  6. if tostring(v.Team) ~= tostring(lplr.Team) then
  7. if v.Character ~= nil then
  8. for _, b in pairs(v.Character:GetChildren()) do
  9. if tostring(b.Name) == "HumanoidRootPart" then
  10. b.Size = Vector3.new(12, 12, 12)
  11. b.Material = "Neon"
  12. b.BrickColor = BrickColor.new("Really blue")
  13. b.Transparency = 0.7
  14. end
  15. end
  16. end
  17. end
  18. end
  19. end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement