Advertisement
gerisx

Untitled

Aug 19th, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. -- Check if LocalPlayer exists and has DataFolder
  2. if LocalPlayer and LocalPlayer:FindFirstChild("DataFolder") then
  3. local DataFolder = LocalPlayer.DataFolder
  4.  
  5. -- Check if DataFolder contains Information
  6. if DataFolder:FindFirstChild("Information") then
  7. local Information = DataFolder.Information
  8.  
  9. -- Check if Information has Jail value
  10. if Information:FindFirstChild("Jail") then
  11. local JailValue = Information.Jail
  12.  
  13. -- Function to check Jail value and perform actions
  14. local function checkJailValue()
  15. local numericJailValue = tonumber(JailValue.Value)
  16. if numericJailValue and numericJailValue >= 1 and numericJailValue <= 250 then
  17. getgenv().Enabled = false
  18. local plr = game.Players.LocalPlayer
  19. local Part = game:GetService("Workspace").Ignored.Shop["[Key] - $129"]
  20.  
  21. plr.Character.HumanoidRootPart.CFrame = Part.Head.CFrame
  22. wait(0.5)
  23. fireclickdetector(Part.ClickDetector)
  24. wait(0.22)
  25. local Players = game:GetService("Players")
  26. local Cashiers = workspace.Cashiers
  27. local Player = Players.LocalPlayer
  28.  
  29. local toolName = "[Key]"
  30.  
  31. if Player.Backpack:FindFirstChild(toolName) then
  32. wait(0.1)
  33. pcall(function()
  34. Player.Backpack[toolName].Parent = Player.Character
  35. loadstring(game:HttpGet('https://github.com/applless/RandomScripts/raw/main/DaHoodAutofarm'))()
  36. end)
  37. end
  38. end
  39. end
  40.  
  41. -- Initial check
  42. checkJailValue()
  43.  
  44. -- Connect to the Changed event of JailValue
  45. JailValue.Changed:Connect(checkJailValue)
  46. end
  47. end
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement