Advertisement
gerisx

sexincock

Aug 15th, 2023
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 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. getgenv().Enabled = false
  21. local plr = game.Players.LocalPlayer
  22. local Part = game:GetService("Workspace").Ignored.Shop["[Key] - $129"]
  23.  
  24. plr.Character.HumanoidRootPart.CFrame = Part.Head.CFrame
  25. wait(0.5)
  26. fireclickdetector(Part.ClickDetector)
  27. wait(0.22)
  28. local Players = game:GetService("Players")
  29. local Cashiers = workspace.Cashiers
  30. local Player = Players.LocalPlayer
  31.  
  32. local toolName = "[Key]"
  33.  
  34. if Player.Backpack:FindFirstChild(toolName) then
  35. wait(0.1)
  36. pcall(function()
  37. Player.Backpack[toolName].Parent = Player.Character
  38. getgenv().Enabled = true
  39. end)
  40. end
  41. end
  42. end
  43.  
  44. -- Initial check
  45. checkJailValue()
  46.  
  47. -- Connect to the Changed event of JailValue
  48. JailValue.Changed:Connect(checkJailValue)
  49. end
  50. end
  51. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement