Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/Elements/Notice.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -110,4 +109,4 @@ return function(icon, Icon)
icon:clipOutside(notice)

return notice
end
end
3 changes: 1 addition & 2 deletions src/Elements/Widget.lua
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ return function(icon, Icon)
iconLabel.TextXAlignment = Enum.TextXAlignment.Left
iconLabel.Text = ""
iconLabel.TextWrapped = true
iconLabel.TextWrap = true
iconLabel.TextScaled = false
iconLabel.Active = false
iconLabel.AutoLocalize = true
Expand Down Expand Up @@ -434,4 +433,4 @@ return function(icon, Icon)
iconSpotGradient.Parent = iconSpot

return widget
end
end
4 changes: 2 additions & 2 deletions src/VERSION.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function VERSION.getLatestVersion(): string?
local placeName = ""
while true do
local success, hdDevelopmentDetails = pcall(function()
return game:GetService("MarketplaceService"):GetProductInfo(DEVELOPMENT_PLACE_ID)
return game:GetService("MarketplaceService"):GetProductInfoAsync(DEVELOPMENT_PLACE_ID)
end)
if success and hdDevelopmentDetails then
placeName = hdDevelopmentDetails.Name
Expand Down Expand Up @@ -48,4 +48,4 @@ end



return VERSION
return VERSION
Loading