I'm trying to make it so the game loads but the player doesn't. When I disable CharacterAutoLoads it says 'Waiting for character'
here's the script
game.Players.PlayerAdded:connect(function(player) script.LocalScript:clone().Parent = player.CharacterAdded:wait() player.Character = nil end)
game.Players.PlayerAdded:connect(function(player) script.LocalScript:clone().Parent = player.CharacterAdded:wait() repeat wait() until player.Character.Torso~=nil --See if this helps. repeat wait() until player.Character.Head~=nil repeat wait() until player.Character.Humanoid~=nil player.Character = nil end)