Error: 19:38:21.165 - Workspace.Script:5: '<eof>' expected near 'end'
game.Players.PlayerAdded:connect(Player) Player.Chatted:connect(function(Message) print(Message) end) end) --error here
game.Players.PlayerAdded:connect(Player) Player.Chatted:connect(function(Message) print(Message) end) end) --error here
Your error is quite easy to solve. What you never did was set up a function on line 1, therefore the script is considering that last end as useless. As well as the script expecting a function named "Player".
This is easily fixable by including function(
to line 1.
game.Players.PlayerAdded:connect(function(Player) Player.Chatted:connect(function(Message) print(Message) end) end) --error here