Skip to content

Commit

Permalink
Fix PlayerList example FontSize property (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
dphfox authored Apr 15, 2024
1 parent 2e19c7f commit 9b961fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/examples/cookbook/player-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ local function PlayerList(
Text = player.DisplayName,
TextColor3 = Color3.new(1, 1, 1),
Font = Enum.Font.GothamMedium,
FontSize = 16,
TextSize = 16,
TextXAlignment = "Right",
TextTruncate = "AtEnd",

Expand Down Expand Up @@ -118,7 +118,7 @@ will automatically create and remove them as the `Players` list changes.
Text = player.DisplayName,
TextColor3 = Color3.new(1, 1, 1),
Font = Enum.Font.GothamMedium,
FontSize = 16,
TextSize = 16,
TextXAlignment = "Right",
TextTruncate = "AtEnd",

Expand Down Expand Up @@ -157,4 +157,4 @@ local gui = scope:New "ScreenGui" {
Players = players
}
}
```
```

0 comments on commit 9b961fb

Please sign in to comment.