Advertisement
NukeVsCity

HIDER

Jul 11th, 2021
7,906
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. local LP = game.Players.LocalPlayer
  2.  
  3. local function hideIdentity()
  4. for i,v in pairs(LP.Character:GetChildren()) do
  5. if v.Name == "Head" and (v:FindFirstChild("TrueName") or v:FindFirstChild("Rank") or v:FindFirstChild("FaceBlock")) then
  6. if v:FindFirstChild("TrueName") then
  7. v.TrueName:Destroy()
  8. end
  9. if v:FindFirstChild("Rank") then
  10. v.Rank:Destroy()
  11. end
  12. if v:FindFirstChild("FaceBlock") then
  13. v.FaceBlock:Destroy()
  14. end
  15. elseif v:IsA("Accessory") or v:IsA("MeshPart") then
  16. v:Destroy()
  17. elseif v:IsA("Shirt") or v:IsA("Pants") then
  18. v:Destroy()
  19. end
  20. end
  21. end
  22.  
  23. hideIdentity()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement