This repository was archived by the owner on Aug 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -39,15 +39,20 @@ function GuiObjectPart.new(
3939 CollectionService :AddTag (part , " _Sign" )
4040
4141 local surfaceGui = Instance .new (" SurfaceGui" )
42- -- surfaceGui.SizingMode = Enum.SurfaceGuiSizingMode.PixelsPerStud
43- surfaceGui .CanvasSize = size or Vector2 . new ( 200 , 200 )
42+ surfaceGui .SizingMode = Enum .SurfaceGuiSizingMode .PixelsPerStud
43+ surfaceGui .PixelsPerStud = 100
4444 surfaceGui .LightInfluence = lightInfluence or 0
4545 surfaceGui .AlwaysOnTop = alwaysOnTop or false
4646 surfaceGui .AutoLocalize = autoLocalize or true
4747 surfaceGui .Parent = part
4848
4949 local guiObject = label :Clone ()
5050 guiObject .Parent = surfaceGui
51+ if guiObject :WaitForChild (" UIStroke" ) then
52+ if guiObject .UIStroke .Thickness == 0 or guiObject .Transparency == 1 or guiObject .UIStroke .Enabled == false then
53+ guiObject .UIStroke :Destroy ()
54+ end
55+ end
5156
5257 Selection :Set ({ part })
5358
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ local VerticallyScalingListFrame = require(targetFolder.VerticallyScalingListFra
1616local Color = require (script .Color )
1717local FontFace = require (script .FontFace )
1818local GuiObjectPart = require (script .GuiObjectPart )
19- local LineJoinMode = require (script .LineJoinMode )
2019local AspectRatio = require (script .AspectRatio )
2120local TextXAlignment = require (script .TextXAlignment )
2221local TextYAlignment = require (script .TextYAlignment )
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ button.ClickableWhenViewportHidden = true
2727
2828-- Create new widget GUI and name it
2929local widget = plugin :CreateDockWidgetPluginGui (" Signs" , widgetInfo )
30- widget .Title = " Signs Free 3.0 .0"
30+ widget .Title = " Signs Free 3.1 .0"
3131widget .Name = " SignsFree"
3232
3333-- Initialize PluginGui or DevelopmentGui
You can’t perform that action at this time.
0 commit comments