Sign with players name on it

I’m working on a single player farm game. Now I was wondering: How to get the players name on a sign in the server the player is playing in. Now I want that sign to say ‘Ferme de (playername)’. How do I do that with the scripts and the sign?

On a server script:

game.Players.OnPlayerAdded:Connect(function(player)
    sign.Text = 'Ferme de '..player.Name
end)
1 Like

Thank you man! This is really helpfull