local workspace = game:GetService("WorkSpace")
local root = SandboxNode.new('UIRoot', workspace)
local label = SandboxNode.new('UITextLabel', root)
label.Title = "商店"
label.LineColor = ColorQuad.new(0, 0, 0, 0)
label.FillColor = ColorQuad.new(0, 0, 0, 0)
label.TitleColor = ColorQuad.new(255, 0, 0, 255)
label.Position = Vector2.new(75,50)
label.FontSize = 18
label.TextVAlignment = Enum.TextVAlignment.Center
label.TextHAlignment = Enum.TextHAlignment.Left
label.IsAutoSize= true
label.OutlineEnable= true
label.ShadowEnable= true
local size = label:GetTextSize()