-- It's harmless only for those who play legit but too lazy to do keycard ig -- Made by Unknowey task.spawn(function() while task.wait() do local plr = game.Players.LocalPlayer local gui = plr.PlayerGui:FindFirstChild("LockpickUI") if gui then local frame = gui:FindFirstChild("Frame") if frame then local doorKey = frame:FindFirstChild("DoorKey") local inputKey = frame:FindFirstChild("InputKey") if doorKey and inputKey then local code = doorKey.Text local tool = plr.Character and plr.Character:FindFirstChildOfClass("Tool") if tool then for i = 1, #code do local target = string.sub(code, i, i) repeat task.wait() until string.sub(inputKey.Text, i, i) == target tool:Activate() task.wait(0.05) end end end end end end end)