The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Lockpicking Simulator script pastebin roblox
By LINK GAME on 2024-09-21 08:00 am | Syntax: LUA | Views: 13



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("Lockpicking Simulator")
  3. local b = w:CreateFolder("AutoFarm")
  4. local f = w:CreateFolder("AutoBuy")
  5. local e = w:CreateFolder("Mix")
  6. local u = w:CreateFolder("Credits")
  7.  
  8. b:Toggle("AutoFarm",function(bool)
  9.         shared.toggle = bool
  10.         AutoFarm = bool
  11. end)
  12.  
  13. b:Toggle("AutoSell",function(bool)
  14.         shared.toggle = bool
  15.         AutoSell = bool
  16. end)
  17.  
  18. f:Toggle("Picks",function(bool)
  19.         shared.toggle = bool
  20.         Picks = bool
  21. end)
  22.  
  23. f:Toggle("Backpacks",function(bool)
  24.         shared.toggle = bool
  25.         Backpacks = bool
  26. end)
  27.  
  28. f:Toggle("Stats",function(bool)
  29.         shared.toggle = bool
  30.         Stats = bool
  31. end)
  32.  
  33. e:Toggle("HideGui",function(bool)
  34.     shared.toggle = bool
  35.     HideGui = bool
  36. end)
  37.  
  38. e:Toggle("AntiAfk",function(bool)
  39.         shared.toggle = bool
  40.         AntiAfk = bool
  41. end)
  42.  
  43. u:Button("maxgat5#8395",function()
  44.         setclipboard("maxgat5#8395")
  45. end)
  46.  
  47. u:Button("Discrod Server",function()
  48.         setclipboard("https://discord.gg/K4txdRSVfq")
  49. end)
  50.  
  51. if game:GetService("CoreGui"):FindFirstChild("PurchasePromptApp") then
  52.     game:GetService("CoreGui").PurchasePromptApp:Destroy()
  53. end
  54.    
  55. while wait() do
  56.     if HideGui == true then
  57.         for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui:GetChildren()) do
  58.             if v.ClassName == "ScreenGui" then
  59.                 if v.Name == "BackpackFull" or v.Name == "LoadingScreen" then
  60.                     v:Destroy()
  61.                 end
  62.                 v.Enabled = false
  63.             end
  64.         end
  65.     else
  66.         for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui:GetChildren()) do
  67.             if v.ClassName == "ScreenGui" then
  68.                 if v.Name == "BackpackFull" or v.Name == "LoadingScreen" then
  69.                     v:Destroy()
  70.                 end
  71.                 v.Enabled = true
  72.             end
  73.         end
  74.     end
  75.    
  76.     if Stats == true then
  77.         for i,v in pairs(game:GetService("StarterGui").AbilityShop.Absolute.Frame.Frame.AbilitiesFrameBottom.BottomFrame:GetChildren()) do
  78.             game:GetService("ReplicatedStorage").Events.UpdateEnergyStats:FireServer(v.Name)
  79.         end
  80.     end
  81.    
  82.     if Backpacks == true then
  83.         for i,v in pairs(game:GetService("ReplicatedStorage").BackPacks:GetChildren()) do
  84.             game:GetService("ReplicatedStorage").Events.BuyBackPack:FireServer(i)
  85.         end
  86.     end
  87.    
  88.     if Picks == true then
  89.         game:GetService("ReplicatedStorage").Events.RequestUpgrade:FireServer()
  90.     end
  91.    
  92.     if AutoFarm == true then
  93.         for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  94.             if v.ClassName == "ClickDetector" and not v.Parent:FindFirstChild("FinishUnlock") and not v.Parent:FindFirstChild("LockChestScript") then
  95.                 fireclickdetector(v, 0)
  96.             end
  97.         end
  98.     end
  99.    
  100.     if AutoSell == true then
  101.         game:GetService("Workspace").BackPackSell.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,0,100)
  102.         wait(.1)
  103.         game:GetService("Workspace").BackPackSell.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,0,0)
  104.         wait(.1)
  105.     end
  106.  
  107.         if AntiAfk == true then
  108.                 local bb=game:service'VirtualUser'
  109.                 bb:CaptureController()
  110.                 bb:ClickButton2(Vector2.new())
  111.         end
  112. end