JasonHacks

Hack

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