[STANDALONE] MSK Input

Github Download

Description

  • Opens an Input Window

Usage

Small Input Window

exports.msk_input:openInput('This is a Header', 'This is a Placeholder', function(input)
    if not input then return end

    print(input)
end)

Big Input Window

exports.msk_input:openInput('This is a Header', 'This is a Placeholder', true, function(input)
    if not input then return end

    print(input)
end)
4 Likes