I made a Loading GUI but I forgot how to load a character like when you have CharacterAutoLoads disabled you can manually do it I forgot the event.. Is it something like the following?
wait(5) game.Players.LocalPlayer:LoadCharacter -- I forgot ;-;
Okay the problem you are probably have is that when the player joins the character isn't loaded.
So to fix this you need to have an event on the [PlayerAdded](http://wiki.roblox.com/index.php?title=API:Class/Players/PlayerAdded and then LoadCharacter the Player
game:GetService'Players'.PlayerAdded:connect(function(Player) Player:LoadCharacter() -- Whatever you want to do after that to manager respawning end)
Hope this helps :)