Glassmorphic UI in Roblox.
Please consider supporting my work.
Via wally:
[dependencies]
GlassmorphicUI = "boatbomber/[email protected]"
Alternatively, grab the .rbxm
standalone model from the latest release.
function GlassmorphicUI.new(): ImageLabel
Returns an ImageLabel with a glassmorphic effect. Use BackgroundTransparency and BackgroundColor3 to modify the glassmorphic effect. Compatible with UICorners and all other ImageLabel properties.
local GlassmorphicUI = require(Path.To.GlassmorphicUI)
local blurryWindow = GlassmorphicUI.new()
blurryWindow.BackgroundTransparency = 0.5
blurryWindow.BackgroundColor3 = Color3.fromRGB(7, 48, 84)
blurryWindow.Size = UDim2.fromScale(0.3, 0.3)
blurryWindow.Position = UDim2.fromScale(0.5, 0.5)
blurryWindow.AnchorPoint = Vector2.new(0.5, 0.5)
blurryWindow.Parent = ScreenGui