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
1 | game.Players.PlayerAdded:connect( function (player) |
2 | script.LocalScript:clone().Parent = player.CharacterAdded:wait() |
3 | player.Character = nil |
4 | end ) |
1 | game.Players.PlayerAdded:connect( function (player) |
2 | script.LocalScript:clone().Parent = player.CharacterAdded:wait() |
3 | repeat wait() until player.Character.Torso~ = nil --See if this helps. |
4 | repeat wait() until player.Character.Head~ = nil |
5 | repeat wait() until player.Character.Humanoid~ = nil |
6 | player.Character = nil |
7 | end ) |