πͺ Lock Picking
Access a comprehensive guide that includes a detailed installation process, examples of code, previews of configurations.
INSTALLATION GUIDE
Step 0 - First Steps
Step 1 - Configure Resource
How do i use it?
-- Initiates the lockpicking minigame and stores the result
local result = exports['inside-lockpicking']:StartLockPicking()
-- Checks the result of the minigame
if result == 'success' then
-- This section is executed if the player wins the minigame
print('Congratulations, you succeeded!')
elseif result == 'fail' then
-- This section is executed if the player loses the minigame
print('Unfortunately, you did not succeed this time.')
endLast updated