Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How come this script doesn't work?

Asked by 8 years ago
print("1")

game.Players.PlayerAdded:connect(function(player)
    print("Player")
    player.CharacterAdded:connect(function(character)
    print(character)
    end)
end)

This is all the code in the script, yet it won't work. It prints("Player") and that's it. Please help!

Answer this question