1
0
Fork 0
forked from Simnation/Main
Main/resources/[standalone]/ox_lib/resource/interface/client/clipboard.lua
2025-06-07 08:51:21 +02:00

15 lines
355 B
Lua

--[[
https://github.com/overextended/ox_lib
This file is licensed under LGPL-3.0 or higher <https://www.gnu.org/licenses/lgpl-3.0.en.html>
Copyright © 2025 Linden <https://github.com/thelindat>
]]
---@param value string
function lib.setClipboard(value)
SendNUIMessage({
action = 'setClipboard',
data = value
})
end