loadstring(game:HttpGet('https://pastebin.com/raw/3Rnd9rHf'))() ---Loading Invisibility
local ACCEPTEDRATE = 2.5 -----Percentage that is accepted
local AmberAlertRate = 10 -----Percentage that will be amber colour up to the ACCEPTEDRate (So basically the cars between 2.50001 to 10% that is more for getting quick flip profits)
local PlayerESP = true --- Do you want to track people?
local DetectExclusiveGoldCars = true --- Do you want to track gold cars?
local RedAlertSound = 9118805558
local AmberAlertSound = 139302680939651
local GoldCarsAlert = 140191790330867
--**CHANGE ANYTING ABOVE**--
local Players = game:GetService("Players")
local Workspace = game:GetService("Workspace")
local UserInputService = game:GetService("UserInputService")
local player = Players.LocalPlayer
local mouse = player:GetMouse()
local vehiclesFolder = Workspace:WaitForChild("Vehicles")
local notifiedVehicles = {}
local selectedLoc = "Junkyard"
local menuOpen = true
local running = true
local locations = {
["Junkyard"] = Vector3.new(-1659.89, 4.25, -343.20),
["Garage"] = Vector3.new(-1914.75, 4.28, -562.92),
["Shop"] = Vector3.new(-1466.5, 5.2, -536.0),
["Bank"] = Vector3.new(-1455.0, 5.5, -750.5),
["Sell/Auc"] = Vector3.new(-1910, 3.9, -815.2),
["Repair"] = Vector3.new(-1087.20, 4.53, -339.91)
}
local function formatNumber(n)
n = tonumber(n) or 0
if n >= 1e6 then
local v = math.floor((n / 1e6) * 100 + 0.5) / 100
return tostring(v) .. "M"
elseif n >= 1e5 then
local v = math.floor((n / 1e3) * 100 + 0.5) / 100
return tostring(v) .. "K"
else
return tostring(math.floor(n))
end
end
local function createESP(character, plr)
if not PlayerESP then return end
if not character or plr == localPlayer then return end
local hrp = character:FindFirstChild("HumanoidRootPart")
if not hrp then return end
-- cleanup
if character:FindFirstChild("PlayerESP_Highlight") then
character.PlayerESP_Highlight:Destroy()
end
if hrp:FindFirstChild("PlayerESP_Name") then
hrp.PlayerESP_Name:Destroy()
end
-- highlight
local hl = Instance.new("Highlight")
hl.Name = "PlayerESP_Highlight"
hl.FillColor = Color3.fromRGB(0, 255, 0)
hl.FillTransparency = 0.5
hl.OutlineTransparency = 0
hl.Parent = character
-- billboard
local bill = Instance.new("BillboardGui")
bill.Name = "PlayerESP_Name"
bill.Size = UDim2.new(0, 160, 0, 60)
bill.StudsOffset = Vector3.new(0, 6, 0)
bill.AlwaysOnTop = true
bill.Parent = hrp
local text = Instance.new("TextLabel")
text.Size = UDim2.new(1, 0, 1, 0)
text.BackgroundTransparency = 1
text.TextColor3 = Color3.fromRGB(255, 255, 255)
text.TextStrokeTransparency = 0
text.TextScaled = true
text.Font = Enum.Font.GothamBold
text.RichText = true
text.Parent = bill
-- updater
task.spawn(function()
while text.Parent and character.Parent do
local data = plr:FindFirstChild("PlayerData")
local status = data and data:FindFirstChild("Status")
local money = status and status:FindFirstChild("Money")
local gold = status and status:FindFirstChild("Gold")
local moneyVal = money and money.Value or 0
local goldVal = gold and gold.Value or 0
text.Text =
plr.Name ..
"\nโฌ" ..
formatNumber(moneyVal) ..
" / " ..
formatNumber(goldVal) ..
" Gold"
task.wait(1)
end
end)
end
-- existing players
for _, plr in ipairs(Players:GetPlayers()) do
if plr ~= localPlayer then
if plr.Character then
createESP(plr.Character, plr)
end
plr.CharacterAdded:Connect(function(char)
char:WaitForChild("HumanoidRootPart")
createESP(char, plr)
end)
end
end
-- new players
Players.PlayerAdded:Connect(function(plr)
if plr == localPlayer then return end
plr.CharacterAdded:Connect(function(char)
char:WaitForChild("HumanoidRootPart")
createESP(char, plr)
end)
end)
local screenGui = Instance.new("ScreenGui", player.PlayerGui)
screenGui.Name = "DeityHub"
screenGui.ResetOnSpawn = false
local function screenAlert(chanceText, alertType)
if not running then return end
local alert = Instance.new("TextLabel", screenGui)
alert.Size = UDim2.new(1, 0, 0, 50)
alert.Position = UDim2.new(0, 0, 0, 80)
alert.BackgroundTransparency = 1
alert.TextSize = 40
alert.Font = Enum.Font.GothamBold
local sound = Instance.new("Sound")
sound.Parent = player.PlayerGui
sound.Volume = 7
if alertType == "Gold" then
alert.TextColor3 = Color3.fromRGB(255, 215, 0)
alert.Text = "๐ฐ GOLD CAR DETECTED ๐ฐ"
sound.SoundId = "rbxassetid://"..GoldCarsAlert
elseif alertType == "Amber" then
alert.TextColor3 = Color3.fromRGB(255, 170, 0)
alert.Text = "โ ๏ธ Amber car: " .. chanceText .. "% โ ๏ธ"
sound.SoundId = "rbxassetid://"..AmberAlertSound
else
alert.TextColor3 = Color3.fromRGB(255, 0, 0)
alert.Text = "๐จ Spawn rare car: " .. chanceText .. "% ๐จ"
sound.SoundId = "rbxassetid://"..RedAlertSound
end
sound:Play()
task.delay(5, function()
if alert then alert:Destroy() end
if sound then sound:Destroy() end
end)
end
local infoFrame = Instance.new("Frame", screenGui)
infoFrame.Size = UDim2.new(0, 280, 0, 110)
infoFrame.Position = UDim2.new(1, -290, 0, 15)
infoFrame.BackgroundTransparency = 1
local timerLabel = Instance.new("TextLabel", infoFrame)
timerLabel.Size = UDim2.new(1, 0, 0, 50)
timerLabel.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
timerLabel.BackgroundTransparency = 0.3
timerLabel.TextColor3 = Color3.fromRGB(0, 255, 150)
timerLabel.TextSize = 26
timerLabel.Font = Enum.Font.GothamBold
timerLabel.Text = "respawn -- second"
Instance.new("UICorner", timerLabel)
local goldLabel = Instance.new("TextLabel", infoFrame)
goldLabel.Size = UDim2.new(1, 0, 0, 40)
goldLabel.Position = UDim2.new(0, 0, 0, 60)
goldLabel.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
goldLabel.BackgroundTransparency = 0.5
goldLabel.TextColor3 = Color3.fromRGB(255, 215, 0)
goldLabel.TextSize = 20
goldLabel.Font = Enum.Font.GothamBold
goldLabel.RichText = true
goldLabel.Text = "Gold: 0"
Instance.new("UICorner", goldLabel)
local main = Instance.new("Frame", screenGui)
main.Size = UDim2.new(0, 210, 0, 270)
main.Position = UDim2.new(0.5, -105, 0.4, 0)
main.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
main.Active = true
Instance.new("UICorner", main)
local title = Instance.new("TextLabel", main)
title.Size = UDim2.new(1, 0, 0, 35)
title.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
title.Text = " โก๏ธ DEITY HUB"
title.TextColor3 = Color3.new(1, 1, 1)
title.Font = Enum.Font.GothamBold
Instance.new("UICorner", title)
local container = Instance.new("Frame", main)
container.Size = UDim2.new(1, 0, 1, -35)
container.Position = UDim2.new(0, 0, 0, 35)
container.BackgroundTransparency = 1
local dropBtn = Instance.new("TextButton", container)
dropBtn.Size = UDim2.new(0.9, 0, 0, 30)
dropBtn.Position = UDim2.new(0.05, 0, 0.05, 0)
dropBtn.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
dropBtn.Text = "๐ TO: Junkyard"
dropBtn.TextScaled = true
dropBtn.TextColor3 = Color3.new(1, 1, 1)
dropBtn.Font = Enum.Font.GothamBold
Instance.new("UICorner", dropBtn)
local dropFrame = Instance.new("ScrollingFrame", container)
dropFrame.Size = UDim2.new(0.9, 0, 0, 100)
dropFrame.Position = UDim2.new(0.05, 0, 0.22, 0)
dropFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
dropFrame.Visible = false
dropFrame.ZIndex = 10
dropFrame.CanvasSize = UDim2.new(0, 0, 0, 200)
dropFrame.ScrollBarThickness = 4
Instance.new("UICorner", dropFrame)
Instance.new("UIListLayout", dropFrame)
for name, _ in pairs(locations) do
local b = Instance.new("TextButton", dropFrame)
b.Size = UDim2.new(1, 0, 0, 30)
b.Text = " ยป " .. name
b.TextScaled = true
b.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
b.TextColor3 = Color3.new(1, 1, 1)
b.ZIndex = 11
b.MouseButton1Click:Connect(function() selectedLoc = name dropBtn.Text = "๐ TO: "..name dropFrame.Visible = false end)
end
dropBtn.MouseButton1Click:Connect(function() dropFrame.Visible = not dropFrame.Visible end)
local tpBtn = Instance.new("TextButton", container)
tpBtn.Size = UDim2.new(0.9, 0, 0, 35)
tpBtn.Position = UDim2.new(0.05, 0, 0.45, 0)
tpBtn.BackgroundColor3 = Color3.fromRGB(0, 160, 255)
tpBtn.Text = "๐ TELEPORT"
tpBtn.TextScaled = true
tpBtn.TextColor3 = Color3.new(1, 1, 1)
tpBtn.Font = Enum.Font.GothamBold
Instance.new("UICorner", tpBtn)
local bestCarBtn = Instance.new("TextButton", container)
bestCarBtn.Size = UDim2.new(0.9, 0, 0, 35)
bestCarBtn.Position = UDim2.new(0.05, 0, 0.70, 0)
bestCarBtn.BackgroundColor3 = Color3.fromRGB(180, 0, 255)
bestCarBtn.Text = "๐ TP BEST CAR"
bestCarBtn.TextScaled = true
bestCarBtn.TextColor3 = Color3.new(1, 1, 1)
bestCarBtn.Font = Enum.Font.GothamBold
Instance.new("UICorner", bestCarBtn)
local exclusiveBtn = Instance.new("TextButton", container)
exclusiveBtn.Size = UDim2.new(0.9, 0, 0, 35)
exclusiveBtn.Position = UDim2.new(0.05, 0, 0.95, 0)
exclusiveBtn.BackgroundColor3 = Color3.fromRGB(255, 200, 0)
exclusiveBtn.Text = "๐ TP TO EXCLUSIVE"
exclusiveBtn.TextScaled = true
exclusiveBtn.TextColor3 = Color3.new(1, 1, 1)
exclusiveBtn.Font = Enum.Font.GothamBold
Instance.new("UICorner", exclusiveBtn)
local function isRealCar(v)
local owner = v:GetAttribute("Owner") or v:FindFirstChild("Owner")
local hasOwner = (owner and tostring(owner) ~= "" and tostring(owner) ~= "0")
if hasOwner then return false end
return true
end
local function findMoney()
local hud = player.PlayerGui:FindFirstChild("HUD")
local moneyLabel = hud and hud:FindFirstChild("Money")
if moneyLabel then
local clean = moneyLabel.Text:gsub("[^%d]", "")
return tonumber(clean) or 0
end
return 0
end
local function createBeamToCar(car, color)
local char = player.Character
local hrp = char and char:FindFirstChild("HumanoidRootPart")
if not hrp or not car then return end
local carPart = car.PrimaryPart or car:FindFirstChildWhichIsA("BasePart", true)
if not carPart then return end
if car:FindFirstChild("RareCarBeam") then
car.RareCarBeam:Destroy()
end
local a0 = Instance.new("Attachment", hrp)
a0.Name = "RareBeam_PlayerAttachment"
local a1 = Instance.new("Attachment", carPart)
a1.Name = "RareBeam_CarAttachment"
local beam = Instance.new("Beam", car)
beam.Name = "RareCarBeam"
beam.Attachment0 = a0
beam.Attachment1 = a1
beam.FaceCamera = true
beam.Width0 = 0.35
beam.Width1 = 0.35
beam.LightEmission = 1
beam.Brightness = 5
beam.Color = ColorSequence.new(color)
beam.Transparency = NumberSequence.new(0.15)
task.delay(25, function()
if beam then beam:Destroy() end
if a0 then a0:Destroy() end
if a1 then a1:Destroy() end
end)
end
local function applyESP()
if not running then return end
for _, v in pairs(vehiclesFolder:GetChildren()) do
if not isRealCar(v) then
if v:FindFirstChild("ESPHighlight") then v.ESPHighlight:Destroy() end
if v:FindFirstChild("ESPGui") then v.ESPGui:Destroy() end
continue
end
local chance = tonumber(v:GetAttribute("SpawnChance"))
if chance and chance > 0 and chance <= ACCEPTEDRATE and not notifiedVehicles[v] then
screenAlert(tostring(chance), "Rare")
createBeamToCar(v, Color3.fromRGB(255, 0, 0))
notifiedVehicles[v] = true
-- AMBER CAR
elseif chance and chance > ACCEPTEDRATE and chance <= AmberAlertRate and not notifiedVehicles[v] then
screenAlert(tostring(chance), "Amber")
createBeamToCar(v, Color3.fromRGB(255, 170, 0))
notifiedVehicles[v] = true
elseif chance and chance == 0 and not notifiedVehicles[v] then-- GOLD CAR DETECTION (highest priority)
screenAlert("GOLD", "Gold")
createBeamToCar(v, Color3.fromRGB(255, 215, 0))
notifiedVehicles[v] = true
end
local hl = v:FindFirstChild("ESPHighlight") or Instance.new("Highlight", v)
hl.Name = "ESPHighlight"
if chance and chance == 0 then
hl.FillColor = Color3.fromRGB(255, 215, 0)
hl.FillTransparency = 0.2
hl.OutlineTransparency = 0
elseif chance and chance <= ACCEPTEDRATE then
hl.FillColor = Color3.fromRGB(255, 0, 0)
hl.FillTransparency = 0.2
hl.OutlineTransparency = 0
elseif chance and chance <= AmberAlertRate then
hl.FillColor = Color3.fromRGB(255, 170, 0)
hl.FillTransparency = 0.2
hl.OutlineTransparency = 0
else
hl.FillColor = Color3.fromRGB(255, 255, 255)
hl.FillTransparency = 1
hl.OutlineTransparency = 0.7
end
local bill = v:FindFirstChild("ESPGui") or Instance.new("BillboardGui", v)
bill.Name = "ESPGui"
bill.AlwaysOnTop = true
bill.Size = UDim2.new(0, 100, 0, 40)
bill.StudsOffset = Vector3.new(0, 6, 0)
local lab = bill:FindFirstChild("TextLabel") or Instance.new("TextLabel", bill)
lab.BackgroundTransparency = 1
lab.Size = UDim2.new(1, 0, 1, 0)
lab.TextColor3 = Color3.new(1, 1, 1)
lab.Font = Enum.Font.GothamBold
lab.RichText = true
lab.TextScaled = true
local color
if chance and chance <= ACCEPTEDRATE then
color = "rgb(255, 0, 0)"
elseif chance and chance <= AmberAlertRate then
color = "rgb(255, 170, 0)"
else
color = "rgb(0, 255, 128)"
end
if chance and chance == 0 then
lab.Text = "GOLD CAR ๐ฐ"
else
lab.Text = "Body\n" .. (chance or "?") .. "%"
end
end
end
task.spawn(function()
while task.wait(0.2) and running do
pcall(applyESP)
local val = findMoney()
goldLabel.Text = "Gold: " .. math.floor(val / 20000) .. " G"
local resp = Workspace:FindFirstChild("JunkyardRespawn", true)
local txt = resp and resp:FindFirstChildWhichIsA("TextLabel", true)
if txt then
local s = txt.Text:match("%d+")
if s then timerLabel.Text = "respawn " .. s .. " second" end
end
end
end)
tpBtn.MouseButton1Click:Connect(function()
local hrp = player.Character and player.Character:FindFirstChild("HumanoidRootPart")
if hrp then hrp.CFrame = CFrame.new(locations[selectedLoc] + Vector3.new(0, 5, 0)) end
end)
bestCarBtn.MouseButton1Click:Connect(function()
local best, minC = nil, ACCEPTEDRATE + 0.000001
for _, v in pairs(vehiclesFolder:GetChildren()) do
if isRealCar(v) then
local c = tonumber(v:GetAttribute("SpawnChance"))
if c and c > 0 and c <= ACCEPTEDRATE then
if c < minC then minC = c best = v end
end
end
end
if best then
local hrp = player.Character and player.Character:FindFirstChild("HumanoidRootPart")
if hrp then hrp.CFrame = best:GetPivot() + Vector3.new(0, 5, 0) end
end
end)
exclusiveBtn.MouseButton1Click:Connect(function()
local hrp = player.Character and player.Character:FindFirstChild("HumanoidRootPart")
if not hrp then return end
for _, v in pairs(vehiclesFolder:GetChildren()) do
if isRealCar(v) and tonumber(v:GetAttribute("SpawnChance")) == 0 then
hrp.CFrame = v:GetPivot() + Vector3.new(0, 5, 0)
break
end
end
end)
UserInputService.InputBegan:Connect(function(i, p)
if p then return end
if i.KeyCode == Enum.KeyCode.Delete then
running = false
screenGui:Destroy()
for _, v in pairs(vehiclesFolder:GetChildren()) do
if v:FindFirstChild("ESPHighlight") then v.ESPHighlight:Destroy() end
if v:FindFirstChild("ESPGui") then v.ESPGui:Destroy() end
if v:FindFirstChild("RareCarBeam") then v.RareCarBeam:Destroy() end
end
elseif i.KeyCode == Enum.KeyCode.Insert then
menuOpen = not menuOpen
main.Visible = menuOpen
elseif i.KeyCode == Enum.KeyCode.LeftControl then
local hrp = player.Character and player.Character:FindFirstChild("HumanoidRootPart")
if hrp then hrp.CFrame = CFrame.new(mouse.Hit.Position + Vector3.new(0, 3, 0)) end
end
end)
local d, ds, sp
main.InputBegan:Connect(function(i) if i.UserInputType == Enum.UserInputType.MouseButton1 then d = true ds = i.Position sp = main.Position end end)
UserInputService.InputChanged:Connect(function(i) if d and i.UserInputType == Enum.UserInputType.MouseMovement then
local delta = i.Position - ds
main.Position = UDim2.new(sp.X.Scale, sp.X.Offset + delta.X, sp.Y.Scale, sp.Y.Offset + delta.Y)
end end)
UserInputService.InputEnded:Connect(function(i) if i.UserInputType == Enum.UserInputType.MouseButton1 then d = false end end)