From a7e1a43a027cd70c3f09f23d526a52a08465144c Mon Sep 17 00:00:00 2001 From: Danny Date: Tue, 16 Dec 2025 20:17:53 -0800 Subject: [PATCH] Update noticeLabel font size property Removed "noticeLabel.TextWrap = true" as it was replaced with "noticeLabel.TextWrapped = true" and not removed. Changed "noticeLabel.FontSize" to "noticeLabel.TextSize" --- src/Elements/Notice.lua | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Elements/Notice.lua b/src/Elements/Notice.lua index 5015062..71bef31 100644 --- a/src/Elements/Notice.lua +++ b/src/Elements/Notice.lua @@ -27,11 +27,10 @@ return function(icon, Icon) noticeLabel.BackgroundTransparency = 1 noticeLabel.Position = UDim2.new(0.5, 0, 0.515, 0) noticeLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0) - noticeLabel.FontSize = Enum.FontSize.Size14 + noticeLabel.TextSize = 14 noticeLabel.TextColor3 = Color3.fromRGB(0, 0, 0) noticeLabel.Text = "1" noticeLabel.TextWrapped = true - noticeLabel.TextWrap = true noticeLabel.Font = Enum.Font.Arial noticeLabel.Parent = notice @@ -110,4 +109,4 @@ return function(icon, Icon) icon:clipOutside(notice) return notice -end \ No newline at end of file +end