game.Players.PlayerAdded:Connect(function(player)
player.CharacterAppearanceLoaded:Connect(function(character) -- Or CharacterAdded
print("1") -- Will Print
end)
end)
When CharacterAutoLoads is Off:
game.Players.PlayerAdded:Connect(function(player)
player:LoadCharacter()
player.CharacterAppearanceLoaded:Connect(function(character) -- Or CharacterAdded
print("1") -- Will not Print
end)
end)
Why when i make CharacterAutoLoads On manually it will not run but when its already on it will run, how can i solve this problem?
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAppearanceLoaded:Connect(function(character) -- Or CharacterAdded
print("1") -- Will not Print
end)
player:LoadCharacter()
end)