Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- owner.Character.Head.face.Texture = "rbxasset://textures/face.png"
- local bdb = owner.Character:FindFirstChild("Body Colors")
- if bdb then
- bdb:Destroy()
- end
- for i,v in pairs(owner.Character:GetChildren()) do
- if v.ClassName == "CharacterMesh" then
- v:Destroy()
- end
- if v.ClassName == "Shirt" then
- v:Destroy()
- end
- if v.ClassName == "Part" then
- v.BrickColor = BrickColor.new("Light orange")
- end
- if v.ClassName == "MeshPart" then
- v.BrickColor = BrickColor.new("Light orange")
- end
- if v.ClassName == "Pants" then
- v:Destroy()
- end
- if v.ClassName == "ShirtGraphic" then
- v:Destroy()
- end
- if v.ClassName == "Accessory" then
- v:Destroy()
- end
- if v.ClassName == "Hat" then
- v:Destroy()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement