Advertisement
gerisx

okaybruh

Aug 18th, 2023 (edited)
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.62 KB | None | 0 0
  1. getgenv().Enabled = true
  2. getgenv().Dis = function()
  3. Enabled = false
  4.  
  5. for i,v in pairs(workspace:GetDescendants()) do
  6. if (v:IsA("Seat")) or (v:IsA("VehicleSeat")) then
  7. v.Disabled = true
  8. end
  9. end
  10. end
  11.  
  12. if (not game:IsLoaded()) then
  13. game.Loaded:Wait()
  14. task.wait(2)
  15. end
  16.  
  17. game:GetService("RunService"):Set3dRenderingEnabled(false)
  18.  
  19. local ScreenGui = Instance.new("ScreenGui")
  20. local Frame = Instance.new("Frame")
  21. local TimeFrame = Instance.new("Frame")
  22. local TimeLabel = Instance.new("TextLabel")
  23. local UICorner_4 = Instance.new("UICorner")
  24. local EarnedFrame = Instance.new("Frame")
  25. local EarnedLabel = Instance.new("TextLabel")
  26. local UICorner_3 = Instance.new("UICorner")
  27. local CurrencyFrame = Instance.new("Frame")
  28. local CurrencyLabel = Instance.new("TextLabel")
  29. local UICorner_2 = Instance.new("UICorner")
  30. local UICorner = Instance.new("UICorner")
  31.  
  32. local function DisableResetOnSpawn(instance)
  33. instance.ResetOnSpawn = false
  34. for _, child in ipairs(instance:GetDescendants()) do
  35. if child:IsA("Instance") then
  36. child.ResetOnSpawn = false
  37. end
  38. end
  39. end
  40.  
  41. -- Disable resetonspawn for all instances in the GUI
  42. DisableResetOnSpawn(ScreenGui)
  43.  
  44. -- Properties:
  45.  
  46. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  47. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  48.  
  49. Frame.Parent = ScreenGui
  50. Frame.BackgroundColor3 = Color3.fromRGB(21, 21, 21) -- Updated background color
  51. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  52. Frame.BorderSizePixel = 0
  53. Frame.Size = UDim2.new(1, 0, 1, 0)
  54.  
  55. TimeFrame.Name = "TimeFrame"
  56. TimeFrame.Parent = Frame
  57. TimeFrame.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
  58. TimeFrame.BorderSizePixel = 0
  59. TimeFrame.Position = UDim2.new(0.025, 0, 0.1, 0)
  60. TimeFrame.Size = UDim2.new(0.3, 0, 0.8, 0)
  61.  
  62. TimeLabel.Name = "TimeLabel"
  63. TimeLabel.Parent = TimeFrame
  64. TimeLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  65. TimeLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  66. TimeLabel.BackgroundTransparency = 1.000
  67. TimeLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  68. TimeLabel.BorderSizePixel = 0
  69. TimeLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  70. TimeLabel.Size = UDim2.new(0.8, 0, 0.8, 0)
  71. TimeLabel.Font = Enum.Font.SourceSans
  72. TimeLabel.Text = "Time Elapsed: 00:00:00"
  73. TimeLabel.TextColor3 = Color3.fromRGB(255, 0, 0)
  74. TimeLabel.TextScaled = true
  75. TimeLabel.TextSize = 14.000
  76. TimeLabel.TextWrapped = true
  77.  
  78. UICorner_4.CornerRadius = UDim.new(0, 8)
  79. UICorner_4.Parent = TimeFrame
  80.  
  81. EarnedFrame.Name = "EarnedFrame"
  82. EarnedFrame.Parent = Frame
  83. EarnedFrame.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
  84. EarnedFrame.BorderSizePixel = 0
  85. EarnedFrame.Position = UDim2.new(0.35, 0, 0.1, 0)
  86. EarnedFrame.Size = UDim2.new(0.3, 0, 0.8, 0)
  87.  
  88. EarnedLabel.Name = "EarnedLabel"
  89. EarnedLabel.Parent = EarnedFrame
  90. EarnedLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  91. EarnedLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  92. EarnedLabel.BackgroundTransparency = 1.000
  93. EarnedLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  94. EarnedLabel.BorderSizePixel = 0
  95. EarnedLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  96. EarnedLabel.Size = UDim2.new(0.8, 0, 0.8, 0)
  97. EarnedLabel.Font = Enum.Font.SourceSans
  98. EarnedLabel.Text = "Cash Earned: 0"
  99. EarnedLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
  100. EarnedLabel.TextScaled = true
  101. EarnedLabel.TextSize = 14.000
  102. EarnedLabel.TextWrapped = true
  103.  
  104. UICorner_3.CornerRadius = UDim.new(0, 8)
  105. UICorner_3.Parent = EarnedFrame
  106.  
  107. CurrencyFrame.Name = "CurrencyFrame"
  108. CurrencyFrame.Parent = Frame
  109. CurrencyFrame.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
  110. CurrencyFrame.BorderSizePixel = 0
  111. CurrencyFrame.Position = UDim2.new(0.675, 0, 0.1, 0)
  112. CurrencyFrame.Size = UDim2.new(0.3, 0, 0.8, 0)
  113.  
  114. CurrencyLabel.Name = "CurrencyLabel"
  115. CurrencyLabel.Parent = CurrencyFrame
  116. CurrencyLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  117. CurrencyLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  118. CurrencyLabel.BackgroundTransparency = 1.000
  119. CurrencyLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  120. CurrencyLabel.BorderSizePixel = 0
  121. CurrencyLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  122. CurrencyLabel.Size = UDim2.new(0.8, 0, 0.8, 0)
  123. CurrencyLabel.Font = Enum.Font.SourceSans
  124. CurrencyLabel.Text = "Currency: 0"
  125. CurrencyLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  126. CurrencyLabel.TextScaled = true
  127. CurrencyLabel.TextSize = 14.000
  128. CurrencyLabel.TextWrapped = true
  129.  
  130. UICorner_2.CornerRadius = UDim.new(0, 8)
  131. UICorner_2.Parent = CurrencyFrame
  132.  
  133. UICorner.CornerRadius = UDim.new(0, 8)
  134. UICorner.Parent = Frame
  135.  
  136. local cashEarned = 0
  137. local previousCash = game.Players.LocalPlayer.DataFolder.Currency.Value
  138. local timerValue = 0
  139.  
  140. local function FormatNumberWithCommas(number)
  141. local formatted = tostring(number)
  142. local k
  143. while true do
  144. formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
  145. if k == 0 then
  146. break
  147. end
  148. end
  149. return formatted
  150. end
  151.  
  152. local function FormatTime(seconds)
  153. local hours = math.floor(seconds / 3600)
  154. local minutes = math.floor((seconds % 3600) / 60)
  155. local secs = seconds % 60
  156. return string.format("%02d:%02d:%02d", hours, minutes, secs)
  157. end
  158.  
  159. local function UpdateCurrencyLabels()
  160. local difference = game.Players.LocalPlayer.DataFolder.Currency.Value - previousCash
  161. cashEarned = cashEarned + difference
  162. EarnedLabel.Text = "Cash Earned: " .. FormatNumberWithCommas(cashEarned)
  163. CurrencyLabel.Text = "Currency: " .. FormatNumberWithCommas(game.Players.LocalPlayer.DataFolder.Currency.Value)
  164. previousCash = game.Players.LocalPlayer.DataFolder.Currency.Value
  165. end
  166.  
  167. local function UpdateTimerLabel()
  168. TimeLabel.Text = "Time Elapsed: " .. FormatTime(timerValue)
  169. end
  170.  
  171. local function StartTimer()
  172. while true do
  173. wait(1)
  174. timerValue = timerValue + 1
  175. UpdateTimerLabel()
  176. end
  177. end
  178.  
  179. game.Players.LocalPlayer.DataFolder.Currency.Changed:Connect(UpdateCurrencyLabels)
  180.  
  181. -- Start the timer when the script runs
  182. StartTimer()
  183.  
  184. local SendLog = function(Link, D)
  185. local Link = getgenv().WebhookLink
  186.  
  187. if (Link ~= "") then
  188. warn("attempting to send log to webhook.")
  189.  
  190. local Data =
  191. {
  192. ["content"] = "",
  193. ["embeds"] = {{
  194. ["title"] = "**Username/UserID**:",
  195. ["description"] = game.Players.LocalPlayer.Name.." / "..game.Players.LocalPlayer.UserId,
  196. ["color"] = tonumber(0x7B00FF),
  197. ["fields"] = {
  198. {
  199. ["name"] = "Ammount:",
  200. ["value"] = FormatNumberWithCommas(cashEarned),
  201. ["inline"] = true
  202. },
  203. {
  204. ["name"] = "Earned:",
  205. ["value"] = FormatNumberWithCommas(game.Players.LocalPlayer.DataFolder.Currency.Value),
  206. ["inline"] = true
  207. },
  208. {
  209. ["name"] = "Time:",
  210. ["value"] = FormatTime(timerValue),
  211. ["inline"] = true
  212. },
  213. {
  214. ["name"] = "Made By:",
  215. ["value"] = "cyx#6621",
  216. ["inline"] = true
  217. },
  218. },
  219. }}
  220. }
  221. local s,e = pcall(function()
  222. local http_request = http_request or syn and syn.request
  223. http_request({Url=Link, Body=game:GetService("HttpService"):JSONEncode(Data), Method = "POST", Headers={["content-type"] = "application/json"}})
  224. end)
  225. if (e) then
  226. warn("error while sending log, mayb incorrect webhook link?")
  227. end
  228. end
  229. end
  230. return SendLog
  231.  
  232. repeat task.wait(0.2) until (game:GetService("Players").LocalPlayer) and (game:GetService("Players").LocalPlayer.Character)
  233.  
  234. UserSettings():GetService("UserGameSettings").MasterVolume = 0
  235.  
  236. setfpscap(getgenv().FPS)
  237.  
  238. print(loaded)
  239.  
  240. local Players = game:GetService("Players")
  241. local Cashiers = workspace.Cashiers
  242. local Player = Players.LocalPlayer
  243.  
  244. if LocalPlayer and LocalPlayer:FindFirstChild("DataFolder") then
  245. local DataFolder = LocalPlayer.DataFolder
  246.  
  247. -- Check if DataFolder contains Information
  248. if DataFolder:FindFirstChild("Information") then
  249. local Information = DataFolder.Information
  250.  
  251. -- Check if Information has Jail value
  252. if Information:FindFirstChild("Jail") then
  253. local JailValue = Information.Jail
  254.  
  255. -- Function to check Jail value and perform actions
  256. local function checkJailValue()
  257. local numericJailValue = tonumber(JailValue.Value)
  258. if numericJailValue and numericJailValue >= 1 and numericJailValue <= 250 then
  259. getgenv().Enabled = false
  260. local plr = game.Players.LocalPlayer
  261. local Part = game:GetService("Workspace").Ignored.Shop["[Key] - $129"]
  262.  
  263. plr.Character.HumanoidRootPart.CFrame = Part.Head.CFrame
  264. wait(0.5)
  265. fireclickdetector(Part.ClickDetector)
  266. wait(0.22)
  267. local Players = game:GetService("Players")
  268. local Cashiers = workspace.Cashiers
  269. local Player = Players.LocalPlayer
  270.  
  271. local toolName = "[Key]"
  272.  
  273. if Player.Backpack:FindFirstChild(toolName) then
  274. wait(0.1)
  275. pcall(function()
  276. Player.Backpack[toolName].Parent = Player.Character
  277. loadstring(game:HttpGet('https://github.com/applless/RandomScripts/raw/main/DaHoodAutofarm'))()
  278. end)
  279. end
  280. end
  281. end
  282.  
  283. -- Initial check
  284. checkJailValue()
  285.  
  286. -- Connect to the Changed event of JailValue
  287. JailValue.Changed:Connect(checkJailValue)
  288. end
  289. end
  290. end
  291.  
  292. -- Check if LocalPlayer exists and has DataFolder
  293. if LocalPlayer and LocalPlayer:FindFirstChild("DataFolder") then
  294. local DataFolder = LocalPlayer.DataFolder
  295.  
  296. -- Check if DataFolder contains Information
  297. if DataFolder:FindFirstChild("Information") then
  298. local Information = DataFolder.Information
  299.  
  300. -- Check if Information has Jail value
  301. if Information:FindFirstChild("Jail") then
  302. local JailValue = Information.Jail
  303.  
  304. -- Function to check Jail value and perform actions
  305. local function checkJailValue()
  306. local numericJailValue = tonumber(JailValue.Value)
  307. if numericJailValue and numericJailValue >= 1 and numericJailValue <= 250 then
  308. getgenv().Enabled = false
  309. local plr = game.Players.LocalPlayer
  310. local Part = game:GetService("Workspace").Ignored.Shop["[Key] - $129"]
  311.  
  312. plr.Character.HumanoidRootPart.CFrame = Part.Head.CFrame
  313. wait(0.5)
  314. fireclickdetector(Part.ClickDetector)
  315. wait(0.22)
  316. local Players = game:GetService("Players")
  317. local Cashiers = workspace.Cashiers
  318. local Player = Players.LocalPlayer
  319.  
  320. local toolName = "[Key]"
  321.  
  322. if Player.Backpack:FindFirstChild(toolName) then
  323. wait(0.1)
  324. pcall(function()
  325. Player.Backpack[toolName].Parent = Player.Character
  326. loadstring(game:HttpGet('https://github.com/applless/RandomScripts/raw/main/DaHoodAutofarm'))()
  327. end)
  328. end
  329. end
  330. end
  331.  
  332. -- Initial check
  333. checkJailValue()
  334.  
  335. -- Connect to the Changed event of JailValue
  336. JailValue.Changed:Connect(checkJailValue)
  337. end
  338.  
  339. loadstring(game:HttpGet("https://github.com/applless/RandomScripts/raw/main/AntiAfk"))()
  340.  
  341. pcall(function()local a=game:GetService("ReplicatedStorage").MainEvent;local b={"CHECKER_1","TeleportDetect","OneMoreTime"}local c;c=hookmetamethod(game,"__namecall",function(...)local d={...}local self=d[1]local e=getnamecallmethod()local f=getcallingscript()if e=="FireServer"and self==a and table.find(b,d[2])then return end return c(...)end)end)
  342.  
  343. for i,v in pairs(workspace:GetDescendants()) do
  344. if (v:IsA("Seat")) or (v:IsA("VehicleSeat")) then
  345. v.Disabled = true
  346. end
  347. end
  348.  
  349.  
  350.  
  351. local GetClosestPart = function(Table)
  352. local ClosestPart = nil
  353.  
  354. for i,v in pairs(Table) do
  355. if (ClosestPart == nil) then
  356. ClosestPart = v
  357. else
  358. if ((Player.Character.HumanoidRootPart.Position - v.Position).Magnitude) < ((ClosestPart.Position - Player.Character.HumanoidRootPart.Position).Magnitude) then
  359. ClosestPart = v
  360. end
  361. end
  362. end
  363.  
  364. return ClosestPart
  365. end
  366.  
  367. local CheckKOed = function()
  368. if (Player.Character.BodyEffects["K.O"].Value == true) then
  369. Player.Character.Humanoid.Health = 0
  370.  
  371. for i,v in pairs(Player.Character:GetChildren()) do
  372. if (v:IsA("BasePart")) then
  373. v:Destroy()
  374. end
  375. end
  376. end
  377. end
  378.  
  379. local GetCashier = function()
  380. local AvailableCashiers = {}
  381. for i,v in pairs(Cashiers:GetChildren()) do
  382. if (v:FindFirstChild("Humanoid")) and (v.Humanoid.Health > 0) then
  383. AvailableCashiers[#AvailableCashiers+1] = v.Open
  384. end
  385. end
  386.  
  387. local ClosestPart = GetClosestPart(AvailableCashiers)
  388.  
  389. if (ClosestPart) and (ClosestPart.Parent) then
  390. return ClosestPart.Parent
  391. else
  392. return nil
  393. end
  394.  
  395. end
  396.  
  397. local GetCashParts = function()
  398. local CashParts = {}
  399. for i,v in pairs(workspace.Ignored.Drop:GetChildren()) do
  400. if (v.Name == "MoneyDrop") and ((Player.Character.HumanoidRootPart.Position - v.Position).Magnitude < 13) then
  401. CashParts[#CashParts+1] = v
  402. end
  403. end
  404.  
  405. return CashParts
  406. end
  407.  
  408.  
  409. task.spawn(function()
  410. while true and task.wait(0.33) do
  411. if (Enabled == true) and (Player.Character) and (Player.Character:FindFirstChild("FULLY_LOADED_CHAR")) then
  412. local Cashier = nil
  413. repeat
  414. Cashier = GetCashier()
  415. task.wait()
  416. until (Cashier ~= nil)
  417.  
  418.  
  419. repeat
  420. if (Player.Backpack:FindFirstChild("Combat")) then
  421. task.wait(0.77)
  422. pcall(function()
  423. Player.Backpack.Combat.Parent = Player.Character
  424. end)
  425. task.wait()
  426. end
  427. Player.Character.HumanoidRootPart.Velocity = Vector3.new(0, 0, 0)
  428. Player.Character.HumanoidRootPart.CFrame = Cashier.Open.CFrame * CFrame.Angles(0, math.random(-180, 0), 0)
  429.  
  430. if (Player.Character:FindFirstChild("Combat")) then
  431. Player.Character.Combat:Activate()
  432. --Player.Character.Combat:Deactivate() Disabled because super punch is faster and more reliable on low fps.
  433. end
  434.  
  435.  
  436. task.wait()
  437. until (Cashier.Humanoid.Health <= 0) or (Player.Character.Humanoid.Health <= 0) or (Player.Character.BodyEffects["K.O"].Value == true) or (Enabled == false)
  438.  
  439. pcall(CheckKOed)
  440.  
  441. repeat
  442. local CashParts = GetCashParts()
  443.  
  444. Player.Character.HumanoidRootPart.Velocity = Vector3.new(0, 0, 0)
  445. Player.Character.HumanoidRootPart.CFrame = Cashier.Open.CFrame + Vector3.new(0, 2, 0)
  446.  
  447. for i,v in pairs(CashParts) do
  448. if (v:FindFirstChild("ClickDetector")) then
  449. fireclickdetector(v.ClickDetector)
  450. end
  451. end
  452.  
  453. task.wait()
  454. until (#CashParts <= 0) or (Player.Character.Humanoid.Health <= 0) or (Player.Character.BodyEffects["K.O"].Value == true) or (Enabled == false)
  455.  
  456. pcall(CheckKOed)
  457. end
  458. end
  459. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement