Advertisement
subaru112g

be invisible

Feb 24th, 2019
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. local char = owner.Character
  2. for i,v in pairs(char:GetChildren()) do
  3. if v.ClassName == "Shirt" or v.ClassName == "Pants" or v.ClassName == "ShirtGraphic" or v.ClassName == "Hat" or v.ClassName == "Accessory" or v.ClassName == "BodyColors" or v.ClassName == "CharacterMesh" then
  4. v:Destroy()
  5. end
  6. if v.ClassName == "Part" or v.ClassName == "MeshPart" then
  7. v.Transparency = 1
  8. for i,f in pairs(v:GetChildren()) do
  9. if f.ClassName == "Decal" or v.ClassName == "SpecialMesh" then
  10. f:Destroy()
  11. end
  12. end
  13. end
  14. if v.ClassName == "Humanoid" then
  15. v.WalkSpeed = 30
  16. v.JumpPower = 60
  17. end
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement