Skip to content

MSK-Scripts/msk_input

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

msk_input

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)

Credits