Example

-- Note: This is just a snippet
Window:Label("Label", Color3.fromRGB(255, 255, 255))
-- Note: This is just a snippet
Window:Label({
    Text = "Label",
    MouseEnter = function(Func)
        Func.Text = "Hi!"
    end,
    MouseLeave = function(Func)
        Func.Text = "Label"
    end
})

Last updated