Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- getgenv().Enabled = true
- getgenv().Dis = function()
- Enabled = false
- for i,v in pairs(workspace:GetDescendants()) do
- if (v:IsA("Seat")) or (v:IsA("VehicleSeat")) then
- v.Disabled = true
- end
- end
- end
- if (not game:IsLoaded()) then
- game.Loaded:Wait()
- task.wait(2)
- end
- game:GetService("RunService"):Set3dRenderingEnabled(false)
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TimeFrame = Instance.new("Frame")
- local TimeLabel = Instance.new("TextLabel")
- local UICorner_4 = Instance.new("UICorner")
- local EarnedFrame = Instance.new("Frame")
- local EarnedLabel = Instance.new("TextLabel")
- local UICorner_3 = Instance.new("UICorner")
- local CurrencyFrame = Instance.new("Frame")
- local CurrencyLabel = Instance.new("TextLabel")
- local UICorner_2 = Instance.new("UICorner")
- local UICorner = Instance.new("UICorner")
- local function DisableResetOnSpawn(instance)
- instance.ResetOnSpawn = false
- for _, child in ipairs(instance:GetDescendants()) do
- if child:IsA("Instance") then
- child.ResetOnSpawn = false
- end
- end
- end
- -- Disable resetonspawn for all instances in the GUI
- DisableResetOnSpawn(ScreenGui)
- -- Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(21, 21, 21) -- Updated background color
- Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BorderSizePixel = 0
- Frame.Size = UDim2.new(1, 0, 1, 0)
- TimeFrame.Name = "TimeFrame"
- TimeFrame.Parent = Frame
- TimeFrame.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
- TimeFrame.BorderSizePixel = 0
- TimeFrame.Position = UDim2.new(0.025, 0, 0.1, 0)
- TimeFrame.Size = UDim2.new(0.3, 0, 0.8, 0)
- TimeLabel.Name = "TimeLabel"
- TimeLabel.Parent = TimeFrame
- TimeLabel.AnchorPoint = Vector2.new(0.5, 0.5)
- TimeLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TimeLabel.BackgroundTransparency = 1.000
- TimeLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TimeLabel.BorderSizePixel = 0
- TimeLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
- TimeLabel.Size = UDim2.new(0.8, 0, 0.8, 0)
- TimeLabel.Font = Enum.Font.SourceSans
- TimeLabel.Text = "Time Elapsed: 00:00:00"
- TimeLabel.TextColor3 = Color3.fromRGB(255, 0, 0)
- TimeLabel.TextScaled = true
- TimeLabel.TextSize = 14.000
- TimeLabel.TextWrapped = true
- UICorner_4.CornerRadius = UDim.new(0, 8)
- UICorner_4.Parent = TimeFrame
- EarnedFrame.Name = "EarnedFrame"
- EarnedFrame.Parent = Frame
- EarnedFrame.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
- EarnedFrame.BorderSizePixel = 0
- EarnedFrame.Position = UDim2.new(0.35, 0, 0.1, 0)
- EarnedFrame.Size = UDim2.new(0.3, 0, 0.8, 0)
- EarnedLabel.Name = "EarnedLabel"
- EarnedLabel.Parent = EarnedFrame
- EarnedLabel.AnchorPoint = Vector2.new(0.5, 0.5)
- EarnedLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- EarnedLabel.BackgroundTransparency = 1.000
- EarnedLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
- EarnedLabel.BorderSizePixel = 0
- EarnedLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
- EarnedLabel.Size = UDim2.new(0.8, 0, 0.8, 0)
- EarnedLabel.Font = Enum.Font.SourceSans
- EarnedLabel.Text = "Cash Earned: 0"
- EarnedLabel.TextColor3 = Color3.fromRGB(0, 255, 0)
- EarnedLabel.TextScaled = true
- EarnedLabel.TextSize = 14.000
- EarnedLabel.TextWrapped = true
- UICorner_3.CornerRadius = UDim.new(0, 8)
- UICorner_3.Parent = EarnedFrame
- CurrencyFrame.Name = "CurrencyFrame"
- CurrencyFrame.Parent = Frame
- CurrencyFrame.BackgroundColor3 = Color3.fromRGB(59, 59, 59)
- CurrencyFrame.BorderSizePixel = 0
- CurrencyFrame.Position = UDim2.new(0.675, 0, 0.1, 0)
- CurrencyFrame.Size = UDim2.new(0.3, 0, 0.8, 0)
- CurrencyLabel.Name = "CurrencyLabel"
- CurrencyLabel.Parent = CurrencyFrame
- CurrencyLabel.AnchorPoint = Vector2.new(0.5, 0.5)
- CurrencyLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- CurrencyLabel.BackgroundTransparency = 1.000
- CurrencyLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
- CurrencyLabel.BorderSizePixel = 0
- CurrencyLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
- CurrencyLabel.Size = UDim2.new(0.8, 0, 0.8, 0)
- CurrencyLabel.Font = Enum.Font.SourceSans
- CurrencyLabel.Text = "Currency: 0"
- CurrencyLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- CurrencyLabel.TextScaled = true
- CurrencyLabel.TextSize = 14.000
- CurrencyLabel.TextWrapped = true
- UICorner_2.CornerRadius = UDim.new(0, 8)
- UICorner_2.Parent = CurrencyFrame
- UICorner.CornerRadius = UDim.new(0, 8)
- UICorner.Parent = Frame
- local cashEarned = 0
- local previousCash = game.Players.LocalPlayer.DataFolder.Currency.Value
- local timerValue = 0
- local function FormatNumberWithCommas(number)
- local formatted = tostring(number)
- local k
- while true do
- formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
- if k == 0 then
- break
- end
- end
- return formatted
- end
- local function FormatTime(seconds)
- local hours = math.floor(seconds / 3600)
- local minutes = math.floor((seconds % 3600) / 60)
- local secs = seconds % 60
- return string.format("%02d:%02d:%02d", hours, minutes, secs)
- end
- local function UpdateCurrencyLabels()
- local difference = game.Players.LocalPlayer.DataFolder.Currency.Value - previousCash
- cashEarned = cashEarned + difference
- EarnedLabel.Text = "Cash Earned: " .. FormatNumberWithCommas(cashEarned)
- CurrencyLabel.Text = "Currency: " .. FormatNumberWithCommas(game.Players.LocalPlayer.DataFolder.Currency.Value)
- previousCash = game.Players.LocalPlayer.DataFolder.Currency.Value
- end
- local function UpdateTimerLabel()
- TimeLabel.Text = "Time Elapsed: " .. FormatTime(timerValue)
- end
- local function StartTimer()
- while true do
- wait(1)
- timerValue = timerValue + 1
- UpdateTimerLabel()
- end
- end
- game.Players.LocalPlayer.DataFolder.Currency.Changed:Connect(UpdateCurrencyLabels)
- -- Start the timer when the script runs
- StartTimer()
- local SendLog = function(Link, D)
- local Link = getgenv().WebhookLink
- if (Link ~= "") then
- warn("attempting to send log to webhook.")
- local Data =
- {
- ["content"] = "",
- ["embeds"] = {{
- ["title"] = "**Username/UserID**:",
- ["description"] = game.Players.LocalPlayer.Name.." / "..game.Players.LocalPlayer.UserId,
- ["color"] = tonumber(0x7B00FF),
- ["fields"] = {
- {
- ["name"] = "Ammount:",
- ["value"] = FormatNumberWithCommas(cashEarned),
- ["inline"] = true
- },
- {
- ["name"] = "Earned:",
- ["value"] = FormatNumberWithCommas(game.Players.LocalPlayer.DataFolder.Currency.Value),
- ["inline"] = true
- },
- {
- ["name"] = "Time:",
- ["value"] = FormatTime(timerValue),
- ["inline"] = true
- },
- {
- ["name"] = "Made By:",
- ["value"] = "cyx#6621",
- ["inline"] = true
- },
- },
- }}
- }
- local s,e = pcall(function()
- local http_request = http_request or syn and syn.request
- http_request({Url=Link, Body=game:GetService("HttpService"):JSONEncode(Data), Method = "POST", Headers={["content-type"] = "application/json"}})
- end)
- if (e) then
- warn("error while sending log, mayb incorrect webhook link?")
- end
- end
- end
- return SendLog
- repeat task.wait(0.2) until (game:GetService("Players").LocalPlayer) and (game:GetService("Players").LocalPlayer.Character)
- UserSettings():GetService("UserGameSettings").MasterVolume = 0
- setfpscap(getgenv().FPS)
- print(loaded)
- local Players = game:GetService("Players")
- local Cashiers = workspace.Cashiers
- local Player = Players.LocalPlayer
- if LocalPlayer and LocalPlayer:FindFirstChild("DataFolder") then
- local DataFolder = LocalPlayer.DataFolder
- -- Check if DataFolder contains Information
- if DataFolder:FindFirstChild("Information") then
- local Information = DataFolder.Information
- -- Check if Information has Jail value
- if Information:FindFirstChild("Jail") then
- local JailValue = Information.Jail
- -- Function to check Jail value and perform actions
- local function checkJailValue()
- local numericJailValue = tonumber(JailValue.Value)
- if numericJailValue and numericJailValue >= 1 and numericJailValue <= 250 then
- getgenv().Enabled = false
- local plr = game.Players.LocalPlayer
- local Part = game:GetService("Workspace").Ignored.Shop["[Key] - $129"]
- plr.Character.HumanoidRootPart.CFrame = Part.Head.CFrame
- wait(0.5)
- fireclickdetector(Part.ClickDetector)
- wait(0.22)
- local Players = game:GetService("Players")
- local Cashiers = workspace.Cashiers
- local Player = Players.LocalPlayer
- local toolName = "[Key]"
- if Player.Backpack:FindFirstChild(toolName) then
- wait(0.1)
- pcall(function()
- Player.Backpack[toolName].Parent = Player.Character
- loadstring(game:HttpGet('https://github.com/applless/RandomScripts/raw/main/DaHoodAutofarm'))()
- end)
- end
- end
- end
- -- Initial check
- checkJailValue()
- -- Connect to the Changed event of JailValue
- JailValue.Changed:Connect(checkJailValue)
- end
- end
- end
- -- Check if LocalPlayer exists and has DataFolder
- if LocalPlayer and LocalPlayer:FindFirstChild("DataFolder") then
- local DataFolder = LocalPlayer.DataFolder
- -- Check if DataFolder contains Information
- if DataFolder:FindFirstChild("Information") then
- local Information = DataFolder.Information
- -- Check if Information has Jail value
- if Information:FindFirstChild("Jail") then
- local JailValue = Information.Jail
- -- Function to check Jail value and perform actions
- local function checkJailValue()
- local numericJailValue = tonumber(JailValue.Value)
- if numericJailValue and numericJailValue >= 1 and numericJailValue <= 250 then
- getgenv().Enabled = false
- local plr = game.Players.LocalPlayer
- local Part = game:GetService("Workspace").Ignored.Shop["[Key] - $129"]
- plr.Character.HumanoidRootPart.CFrame = Part.Head.CFrame
- wait(0.5)
- fireclickdetector(Part.ClickDetector)
- wait(0.22)
- local Players = game:GetService("Players")
- local Cashiers = workspace.Cashiers
- local Player = Players.LocalPlayer
- local toolName = "[Key]"
- if Player.Backpack:FindFirstChild(toolName) then
- wait(0.1)
- pcall(function()
- Player.Backpack[toolName].Parent = Player.Character
- loadstring(game:HttpGet('https://github.com/applless/RandomScripts/raw/main/DaHoodAutofarm'))()
- end)
- end
- end
- end
- -- Initial check
- checkJailValue()
- -- Connect to the Changed event of JailValue
- JailValue.Changed:Connect(checkJailValue)
- end
- loadstring(game:HttpGet("https://github.com/applless/RandomScripts/raw/main/AntiAfk"))()
- 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)
- for i,v in pairs(workspace:GetDescendants()) do
- if (v:IsA("Seat")) or (v:IsA("VehicleSeat")) then
- v.Disabled = true
- end
- end
- local GetClosestPart = function(Table)
- local ClosestPart = nil
- for i,v in pairs(Table) do
- if (ClosestPart == nil) then
- ClosestPart = v
- else
- if ((Player.Character.HumanoidRootPart.Position - v.Position).Magnitude) < ((ClosestPart.Position - Player.Character.HumanoidRootPart.Position).Magnitude) then
- ClosestPart = v
- end
- end
- end
- return ClosestPart
- end
- local CheckKOed = function()
- if (Player.Character.BodyEffects["K.O"].Value == true) then
- Player.Character.Humanoid.Health = 0
- for i,v in pairs(Player.Character:GetChildren()) do
- if (v:IsA("BasePart")) then
- v:Destroy()
- end
- end
- end
- end
- local GetCashier = function()
- local AvailableCashiers = {}
- for i,v in pairs(Cashiers:GetChildren()) do
- if (v:FindFirstChild("Humanoid")) and (v.Humanoid.Health > 0) then
- AvailableCashiers[#AvailableCashiers+1] = v.Open
- end
- end
- local ClosestPart = GetClosestPart(AvailableCashiers)
- if (ClosestPart) and (ClosestPart.Parent) then
- return ClosestPart.Parent
- else
- return nil
- end
- end
- local GetCashParts = function()
- local CashParts = {}
- for i,v in pairs(workspace.Ignored.Drop:GetChildren()) do
- if (v.Name == "MoneyDrop") and ((Player.Character.HumanoidRootPart.Position - v.Position).Magnitude < 13) then
- CashParts[#CashParts+1] = v
- end
- end
- return CashParts
- end
- task.spawn(function()
- while true and task.wait(0.33) do
- if (Enabled == true) and (Player.Character) and (Player.Character:FindFirstChild("FULLY_LOADED_CHAR")) then
- local Cashier = nil
- repeat
- Cashier = GetCashier()
- task.wait()
- until (Cashier ~= nil)
- repeat
- if (Player.Backpack:FindFirstChild("Combat")) then
- task.wait(0.77)
- pcall(function()
- Player.Backpack.Combat.Parent = Player.Character
- end)
- task.wait()
- end
- Player.Character.HumanoidRootPart.Velocity = Vector3.new(0, 0, 0)
- Player.Character.HumanoidRootPart.CFrame = Cashier.Open.CFrame * CFrame.Angles(0, math.random(-180, 0), 0)
- if (Player.Character:FindFirstChild("Combat")) then
- Player.Character.Combat:Activate()
- --Player.Character.Combat:Deactivate() Disabled because super punch is faster and more reliable on low fps.
- end
- task.wait()
- until (Cashier.Humanoid.Health <= 0) or (Player.Character.Humanoid.Health <= 0) or (Player.Character.BodyEffects["K.O"].Value == true) or (Enabled == false)
- pcall(CheckKOed)
- repeat
- local CashParts = GetCashParts()
- Player.Character.HumanoidRootPart.Velocity = Vector3.new(0, 0, 0)
- Player.Character.HumanoidRootPart.CFrame = Cashier.Open.CFrame + Vector3.new(0, 2, 0)
- for i,v in pairs(CashParts) do
- if (v:FindFirstChild("ClickDetector")) then
- fireclickdetector(v.ClickDetector)
- end
- end
- task.wait()
- until (#CashParts <= 0) or (Player.Character.Humanoid.Health <= 0) or (Player.Character.BodyEffects["K.O"].Value == true) or (Enabled == false)
- pcall(CheckKOed)
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement