This shutsdown my game
function onPlayerAdded(player) player.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=34806691" --My ID end game.Players.PlayerAdded:connect(onPlayerAdded)
Try this:
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)