This is what I have:
1 | while true do |
2 | game.Players.LocalPlayer.findFirstChild( "Body Colors" ).HeadColor.Color = Color 3. new( "Bright blue" ) |
3 | end |
Well, you would do something along the lines of this in a local script:
1 | local player = game.Players.LocalPlayer |
2 | local char = player.Character |
3 |
4 | char.Head.BrickColor = BrickColor.new( "COLOR HERE" ) |
etc., etc.