I want to disable PlayerAutoLoads but when I do, the character never spawns. Is there a way to wait about 8 seconds before spawning?
If you have disabled PlayerAutoLoads, try a script like this.
game.Players.PlayerAdded:Connect(function(player) wait(5) --change this to how long you want to wait player:LoadCharacter() end)
No guarantees this will work, I don't have access to roblox studio right now.