How should I insert a StringValue into a player?

Hello, I was wondering how I could Insert a StringValue into a player when they join the game.
Can anyone help me?

3 Likes
  game.Players.PlayerAdded:Connect(function(player)
      local string = Instance.new('StringValue', player)
  end)

If that’s what you are looking for?

11 Likes

Yes that works thanks! (30 characters)

1 Like