diff --git a/resources/[carscripts]/lockpick/lockpick/LICENSE b/resources/[carscripts]/lockpick/lockpick/LICENSE
new file mode 100644
index 000000000..29d056db5
--- /dev/null
+++ b/resources/[carscripts]/lockpick/lockpick/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2022 BagusCodeStudio
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/resources/[carscripts]/lockpick/lockpick/README.md b/resources/[carscripts]/lockpick/lockpick/README.md
new file mode 100644
index 000000000..b18a1cc78
--- /dev/null
+++ b/resources/[carscripts]/lockpick/lockpick/README.md
@@ -0,0 +1,33 @@
+# Lockpick UI Minigame
+
+
+
+An easy lockpick export for FiveM.
+I know this was in a lot of leaked resource and has been made similarly.
+But this one I edited it myself from the codepen mentioned below.
+Credits to [antoxa-kms](https://codepen.io/antoxa-kms/).
+
+## Installation
+
+1. Download the resource.
+2. Drag and drop to resources folder.
+3. Ensure or start the resource in server.cfg and you are done.
+
+## Usage
+
+Use `startLockpick` export to start lockpicking.
+
+```lua
+RegisterCommand('lockpicktry', function()
+ local result = exports['lockpick']:startLockpick()
+ print(result, 'lockpicking result')
+end)
+```
+
+## Contribution
+
+Suggestions and pull request are welcome!
+
+## Acknowledgements
+
+I do not take any credits from the UI code, credits to [antoxa-kms](https://codepen.io/antoxa-kms/pen/qbqoMy) codepen.
diff --git a/resources/[carscripts]/lockpick/lockpick/client.lua b/resources/[carscripts]/lockpick/lockpick/client.lua
new file mode 100644
index 000000000..5f008bdbb
--- /dev/null
+++ b/resources/[carscripts]/lockpick/lockpick/client.lua
@@ -0,0 +1,36 @@
+local Promise = nil
+
+RegisterNUICallback('close', function()
+ SetNuiFocus(false, false)
+ if Promise then
+ Promise:resolve(false)
+ end
+end)
+
+RegisterNUICallback('succeed', function()
+ SetNuiFocus(false, false)
+ Promise:resolve(true)
+end)
+
+RegisterNUICallback('failed', function()
+ SetNuiFocus(false, false)
+ Promise:resolve(false)
+end)
+
+RegisterCommand('lockpicktry', function()
+ local result = exports['lockpick']:startLockpick()
+ print(result, 'lockpicking result')
+end)
+
+exports('startLockpick', function(tries)
+ SendNUIMessage({
+ start = true,
+ tries = tries
+ })
+ SetNuiFocus(true, true)
+
+ Promise = promise.new()
+
+ local result = Citizen.Await(Promise)
+ return result
+end)
\ No newline at end of file
diff --git a/resources/[carscripts]/lockpick/lockpick/fxmanifest.lua b/resources/[carscripts]/lockpick/lockpick/fxmanifest.lua
new file mode 100644
index 000000000..6616b5891
--- /dev/null
+++ b/resources/[carscripts]/lockpick/lockpick/fxmanifest.lua
@@ -0,0 +1,12 @@
+fx_version 'cerulean'
+game 'gta5'
+
+ui_page 'html/index.html'
+
+files {
+ 'html/index.html',
+ 'html/styles.css',
+ 'html/script.js'
+}
+
+client_script 'client.lua'
\ No newline at end of file
diff --git a/resources/[carscripts]/lockpick/lockpick/html/index.html b/resources/[carscripts]/lockpick/lockpick/html/index.html
new file mode 100644
index 000000000..555b08799
--- /dev/null
+++ b/resources/[carscripts]/lockpick/lockpick/html/index.html
@@ -0,0 +1,29 @@
+
+
+