Designed to remove players colours and replace them, it gets no errors when running but the players colours dont change.
game.Players.PlayerAdded:connect(function(player)
player.CharacterAdded:connect(function(character)
character.Head.face:remove()
character("Body Colors"):remove()
script("Body Colors"):clone().Parent = character
game.ServerStorage.Main.Parts.Face.Decal:Clone().Parent = character.Head
end)
end) |