PositionPoints

Note: This Is Not Like getPositionPoints()

This Is The Position Points Of The LocalPlayer's Screen

Simple Usage:

local textLabelEffect = VisualEffectsLibrary:CreateVisual({
    Method = "Drawing",
    Properties = {
        Type = "Text",
        Color = Color3.fromRGB(255, 0, 0),
        Position = VisualLibrary.PositionPoints.Top, -- Usage
        Text = "Hello, World!",
        Size = 24,
        Center = true,
    }
})

Available Position Points

Available Position Points

Center

Left

Right

Top

TopLeft

TopRight

Bottom

BottomLeft

BottomRight

Last updated