Input
MSK.Input.Open
Asynchronous
-- Small Input Window
MSK.Input.Open(playerId, 'This is a Header', 'This is a Placeholder', function(input)
if not input then return end
print(input)
end)
-- Big Input Window
MSK.Input.Open(playerId, 'This is a Header', 'This is a Placeholder', true, function(input)
if not input then return end
print(input)
end)
-- As an Export:
exports.msk_core:Input(playerId, header, placeholder, field, function(input)
if not input then return end
print(input)
endSynchronous
MSK.Input.Close
Last updated

