Advertisement
gerisx

Untitled

Aug 19th, 2023 (edited)
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.62 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local LocalPlayer = Players.LocalPlayer
  3.  
  4. local player = game.Players.LocalPlayer -- Get the LocalPlayer
  5. local thresholdDistance = 20 -- Set the threshold distance for proximity
  6.  
  7. local function calculateDistance(position1, position2)
  8. return (position1 - position2).Magnitude
  9. end
  10.  
  11. local function checkProximity(userPosition, nearbyPosition)
  12. local distance = calculateDistance(userPosition, nearbyPosition)
  13. return distance <= thresholdDistance
  14. end
  15.  
  16. local function handleProximityCheck()
  17. local userPosition = player.Character and player.Character.HumanoidRootPart.Position
  18.  
  19. if userPosition then
  20. local nearbyPlayers = game.Players:GetPlayers()
  21. for _, nearbyPlayer in pairs(nearbyPlayers) do
  22. if nearbyPlayer ~= player then
  23. local nearbyPosition = nearbyPlayer.Character and nearbyPlayer.Character.HumanoidRootPart.Position
  24. if nearbyPosition and checkProximity(userPosition, nearbyPosition) then
  25. print("Someone is near you: " .. nearbyPlayer.Name)
  26. getgenv().Enabled = false
  27. wait(0.2)
  28. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(588.871643, 122.499977, 92.6984558, -0.829871118, 1.43163659e-08, -0.557955146, -1.31117446e-08, 1, 4.51603057e-08, 0.557955146, 4.47929978e-08, -0.829871118)
  29. wait(2)
  30. loadstring(game:HttpGet('https://github.com/applless/RandomScripts/raw/main/DaHoodAutofarm'))()
  31. end
  32. end
  33. end
  34. end
  35. end
  36.  
  37. while wait(1) do
  38. handleProximityCheck()
  39. end
  40. -- Check if LocalPlayer exists and has DataFolder
  41. if LocalPlayer and LocalPlayer:FindFirstChild("DataFolder") then
  42. local DataFolder = LocalPlayer.DataFolder
  43.  
  44. -- Check if DataFolder contains Information
  45. if DataFolder:FindFirstChild("Information") then
  46. local Information = DataFolder.Information
  47.  
  48. -- Check if Information has Jail value
  49. if Information:FindFirstChild("Jail") then
  50. local JailValue = Information.Jail
  51.  
  52. -- Function to check Jail value and perform actions
  53. local function checkJailValue()
  54. local numericJailValue = tonumber(JailValue.Value)
  55. if numericJailValue and numericJailValue >= 1 and numericJailValue <= 250 then
  56. getgenv().Enabled = false
  57. local plr = game.Players.LocalPlayer
  58. local Part = game:GetService("Workspace").Ignored.Shop["[Key] - $129"]
  59.  
  60. plr.Character.HumanoidRootPart.CFrame = Part.Head.CFrame
  61. wait(0.5)
  62. fireclickdetector(Part.ClickDetector)
  63. wait(0.22)
  64. local Players = game:GetService("Players")
  65. local Cashiers = workspace.Cashiers
  66. local Player = Players.LocalPlayer
  67.  
  68. local toolName = "[Key]"
  69.  
  70. if Player.Backpack:FindFirstChild(toolName) then
  71. wait(0.1)
  72. pcall(function()
  73. Player.Backpack[toolName].Parent = Player.Character
  74. loadstring(game:HttpGet('https://github.com/applless/RandomScripts/raw/main/DaHoodAutofarm'))()
  75. end)
  76. end
  77. end
  78. end
  79.  
  80. -- Initial check
  81. checkJailValue()
  82.  
  83. -- Connect to the Changed event of JailValue
  84. JailValue.Changed:Connect(checkJailValue)
  85. end
  86. end
  87. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement