Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local char = owner.Character
- for i,v in pairs(char:GetChildren()) do
- for i,s in pairs(v:GetChildren()) do
- if s.ClassName == "Decal" then
- s:Destroy()
- end
- end
- if v.ClassName == "Hat" or v.ClassName == "Accessory" then
- v.Handle.Transparency = 0.8
- v.Handle.Material = "Metal"
- v.Handle:FindFirstChildOfClass("SpecialMesh").TextureId = ""
- v.Handle.BrickColor = BrickColor.new("Medium stone gray")
- end
- if v.ClassName == "Part" or v.ClassName == "MeshPart" then
- if not(v.Name == "HumanoidRootPart") then
- v.Transparency = 0.8
- v.Material = "Metal"
- v.BrickColor = BrickColor.new("Medium stone gray")
- end
- end
- end
- while true do
- wait()
- for i,v in pairs(char:GetChildren()) do
- if v.ClassName == "CharacterMesh" or v.ClassName == "Shirt" or v.ClassName == "Pants" then
- v:Destroy()
- end
- for i,s in pairs(v:GetChildren()) do
- if s.ClassName == "Decal" then
- s:Destroy()
- end
- end
- if v.ClassName == "Model" then
- for i,s in pairs(v:GetChildren()) do
- if s.ClassName == "Part" or s.ClassName == "MeshPart" then
- if not(s.Name == "HumanoidRootPart") then
- s.Transparency = 0.8
- s.Material = "Metal"
- s.BrickColor = BrickColor.new("Medium stone gray")
- end
- end
- end
- end
- if v.ClassName == "Part" or v.ClassName == "MeshPart" then
- if not(v.Name == "HumanoidRootPart") then
- v.Transparency = 0.8
- v.Material = "Metal"
- v.BrickColor = BrickColor.new("Medium stone gray")
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement