I cant get all the players and new players. This script only detects my player and wont find any new people that join, or already existing people in the server.
game.Players.PlayerAdded:Connect(function(P)
task.spawn(function()
P.CharacterAdded:Wait()
print("Char: "..P.Name)
end)
end)
for _, V : Player in game.Players:GetChildren() do
task.spawn(function()
V.CharacterAdded:Wait()
print("Char: "..V.Name)
end)
end
This wont detect new players who join the game. How do i fix that?