Advertisement
gerisx

ok

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