This is NOT a request! So what the script below does is when a player joins they will look like they id that is posted below. The ID= me Everytime I update my character it changes. I want it to stay how my character is 1/ one outfit. I dont want it to change when I change my character.
local Players = Game:GetService("Players") Players.PlayerAdded:connect(function(Player) Player.CharacterAdded:connect(function(Character) Player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=34806691" end) end)
It would not work because you're getting your player's character, but if you change your character, it would still be the same. You have to make a separate character instead of using your player ID.