Advertisement
JasonHacks

Untitled

Feb 27th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. while true do
  2. wait(0.3)
  3. for _, p in pairs(game:GetChildren()) do
  4. if p.ClassName == ("Players") then
  5. plr = p.LocalPlayer
  6. team = plr.TeamColor
  7. for _, v in pairs(p:GetChildren()) do
  8. if v.Name ~= plr.Name and v.TeamColor ~= team then
  9. for _, l in pairs(v.Character.Torso:GetChildren()) do
  10. if l.Name == ("OverRemove") then
  11. l:Destroy()
  12. end
  13. end
  14. i = Instance.new("BillboardGui",v.Character.Torso)
  15. i.Name = ("OverRemove")
  16. f = Instance.new("Frame",i)
  17. i.Active = true
  18. i.AlwaysOnTop = true
  19. i.Size = UDim2.new(1,0,1,0)
  20. i.ExtentsOffset = Vector3.new(0,3.5,0)
  21. f.Size = UDim2.new(1,0,1,0)
  22. f.BorderSizePixel = 0
  23. f.BackgroundColor3 = Color3.new(1,0,0)
  24. elseif v.TeamColor == team then
  25. for _, l in pairs(v.Character.Torso:GetChildren()) do
  26. if l.Name == ("OverRemove") then
  27. l:Destroy()
  28. end
  29. end
  30. end
  31. end
  32. end
  33. end
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement