Advertisement
gerisx

Untitled

Sep 6th, 2023 (edited)
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.84 KB | None | 0 0
  1. -- [ATMFARM] --
  2.  
  3. loadstring(game:HttpGet('https://github.com/applless/RandomScripts/raw/main/DaHoodAutofarm'))()
  4.  
  5. -- [GUI] --
  6.  
  7. loadstring(game:HttpGet("https://pastebin.com/raw/cqshBGxa"))()
  8.  
  9. -- [3drendering] --
  10.  
  11. if getgenv().rendering == true then
  12. game:GetService("RunService"):Set3dRenderingEnabled(false)
  13. else
  14. game:GetService("RunService"):Set3dRenderingEnabled(true)
  15. end
  16.  
  17. -- [FPS] --
  18.  
  19.  
  20. setfpscap(getgenv().fps)
  21.  
  22. -- [boxing] --
  23.  
  24. local plr = game.Players.LocalPlayer
  25.  
  26. while true do
  27. local value = tonumber(plr.DataFolder.Information.BoxingValue.Value) -- Convert to a number
  28.  
  29. if value >= 1 and value <= 2499 then
  30. getgenv().Dis()
  31. if plr.Backpack:FindFirstChild("Combat") then
  32. plr.Character:FindFirstChildWhichIsA("Humanoid"):EquipTool(plr.Backpack:FindFirstChild("Combat"))
  33. end
  34.  
  35. plr.Character:FindFirstChild("HumanoidRootPart").CFrame = CFrame.new(-276.682251, 24.1835537, -1138.64343)
  36. plr.Character:FindFirstChild("Combat"):Activate()
  37. plr.Character:FindFirstChild("Combat"):Deactivate()
  38. elseif value >= 2500 then
  39. local plr = game.Players.LocalPlayer
  40. local Part = game:GetService("Workspace").Ignored.Shop["Boxing Moveset (Require: Max Box Stat) - $0"]
  41.  
  42. plr.Character.HumanoidRootPart.CFrame = Part.Head.CFrame
  43. wait(0.5)
  44. fireclickdetector(Part.ClickDetector)
  45. wait(0.22)
  46. loadstring(game:HttpGet('https://github.com/applless/RandomScripts/raw/main/DaHoodAutofarm'))()
  47. break
  48. end
  49.  
  50. wait(0.1)
  51. end
  52.  
  53. -- [Anti-Arrest] --
  54. if getgenv().antiarrest == true then
  55. print("antiarrest:", getgenv().dontgetnearme)
  56. if LocalPlayer and LocalPlayer:FindFirstChild("DataFolder") then
  57. local DataFolder = LocalPlayer.DataFolder
  58.  
  59. -- Check if DataFolder contains Information
  60. if DataFolder:FindFirstChild("Information") then
  61. local Information = DataFolder.Information
  62.  
  63. -- Check if Information has Jail value
  64. if Information:FindFirstChild("Jail") then
  65. local JailValue = Information.Jail
  66.  
  67. -- Function to check Jail value and perform actions
  68. local function checkJailValue()
  69. local numericJailValue = tonumber(JailValue.Value)
  70. if numericJailValue and numericJailValue >= 1 and numericJailValue <= 250 then
  71. getgenv().Dis()
  72. local plr = game.Players.LocalPlayer
  73. local Part = game:GetService("Workspace").Ignored.Shop["[Key] - $129"]
  74.  
  75. plr.Character.HumanoidRootPart.CFrame = Part.Head.CFrame
  76. wait(0.5)
  77. fireclickdetector(Part.ClickDetector)
  78. wait(0.22)
  79. local Players = game:GetService("Players")
  80. local Cashiers = workspace.Cashiers
  81. local Player = Players.LocalPlayer
  82.  
  83. local toolName = "[Key]"
  84.  
  85. if Player.Backpack:FindFirstChild(toolName) then
  86. wait(0.1)
  87. pcall(function()
  88. Player.Backpack[toolName].Parent = Player.Character
  89. loadstring(game:HttpGet('https://github.com/applless/RandomScripts/raw/main/DaHoodAutofarm'))()
  90. end)
  91. end
  92. end
  93. end
  94.  
  95. -- Initial check
  96. checkJailValue()
  97.  
  98. -- Connect to the Changed event of JailValue
  99. JailValue.Changed:Connect(checkJailValue)
  100. end
  101. end
  102. end
  103. else
  104. print("antiarrest:", getgenv().dontgetnearme)
  105. end
  106.  
  107. -- [dontgetnearme] --
  108.  
  109. if getgenv().dontgetnearme == true then
  110. print("dontgetnearme:", getgenv().dontgetnearme)
  111. local Players = game:GetService("Players")
  112. local LocalPlayer = Players.LocalPlayer
  113.  
  114. local player = game.Players.LocalPlayer -- Get the LocalPlayer
  115. local thresholdDistance = 20 -- Set the threshold distance for proximity
  116.  
  117. local function calculateDistance(position1, position2)
  118. return (position1 - position2).Magnitude
  119. end
  120.  
  121. local function checkProximity(userPosition, nearbyPosition)
  122. local distance = calculateDistance(userPosition, nearbyPosition)
  123. return distance <= thresholdDistance
  124. end
  125.  
  126. local function handleProximityCheck()
  127. local userPosition = player.Character and player.Character.HumanoidRootPart.Position
  128.  
  129. if userPosition then
  130. local nearbyPlayers = game.Players:GetPlayers()
  131. for _, nearbyPlayer in pairs(nearbyPlayers) do
  132. if nearbyPlayer ~= player then
  133. local nearbyPosition = nearbyPlayer.Character and nearbyPlayer.Character.HumanoidRootPart.Position
  134. if nearbyPosition and checkProximity(userPosition, nearbyPosition) then
  135. print("Someone is near you: " .. nearbyPlayer.Name)
  136. getgenv().Dis()
  137. wait(0.5)
  138. 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)
  139. wait(2)
  140. loadstring(game:HttpGet('https://github.com/applless/RandomScripts/raw/main/DaHoodAutofarm'))()
  141. end
  142. end
  143. end
  144. end
  145. end
  146. else
  147. print("dontgetnearme:", getgenv().dontgetnearme)
  148. end
  149.  
  150. while wait(1) do
  151. handleProximityCheck()
  152. end
  153.  
  154. -- [webhook] --
  155.  
  156. local seconds = getgenv().sender * 3600 -- 1 hour = 3600 seconds
  157.  
  158. print("LOADED")
  159. loadstring(game:HttpGet("https://pastebin.com/raw/7Vg5uhr5"))()
  160.  
  161. while true do
  162. wait(seconds)
  163. print("sending webhook")
  164. loadstring(game:HttpGet("https://pastebin.com/raw/7Vg5uhr5"))()
  165. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement