Last active
August 7, 2021 07:42
-
-
Save sekaiwish/853aa50181fc93e048c4e9b8f52e66d9 to your computer and use it in GitHub Desktop.
Da Hood Money Vacuum
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
loop = true | |
setfflag("AbuseReportScreenshot", "False") | |
setfflag("AbuseReportScreenshotPercentage", "0") | |
local Safespotcoord = Vector3.new(-510, 22, -283) | |
local Safespot = CFrame.new(Safespotcoord) | |
local LocalPlayer = game:GetService("Players").LocalPlayer | |
function Teleport(CFrame) | |
LocalPlayer.Character.Humanoid.Jump = true | |
LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame | |
end | |
function GetMask() | |
local Mask = game.Workspace.Ignored.Shop:FindFirstChild('[Paintball Mask] - $60') | |
Teleport(CFrame.new(Mask.Head.Position)) | |
wait(.5) | |
fireclickdetector(Mask.ClickDetector) | |
wait(.5) | |
local Tool = LocalPlayer.Backpack.Mask | |
LocalPlayer.Character.Humanoid:EquipTool(Tool) | |
Tool:Activate() | |
Teleport(Safespot) | |
end | |
function FindCash() | |
for i, v in pairs(game:GetService("Workspace").Ignored.Drop:GetDescendants()) do | |
if v:IsA("ClickDetector") and v.Parent and v.Parent.Name:find("Money") and (v.Parent.Position - LocalPlayer.Character.HumanoidRootPart.Position).magnitude <= 18 then | |
return true | |
end | |
end | |
end | |
while wait() do | |
if not LocalPlayer.Backpack:FindFirstChild('Mask') and LocalPlayer.Character.Humanoid.Health > 20 then | |
GetMask() | |
end | |
if LocalPlayer.Character.HumanoidRootPart.Position.Y > 80 or LocalPlayer.Character.HumanoidRootPart.Position.Y < -50 then | |
Teleport(Safespot) | |
end | |
-- Anti-stomp | |
if not LocalPlayer.Character:WaitForChild("RightUpperLeg"):FindFirstChildOfClass("Motor6D") and LocalPlayer.Character:FindFirstChild("UpperTorso") then | |
LocalPlayer.Character.UpperTorso:Destroy() | |
LocalPlayer:Kick("aha") | |
end | |
for i, v in pairs(game.Workspace.Ignored.Drop:GetChildren()) do | |
if v.Name == "MoneyDrop" and v:IsDescendantOf(game) and LocalPlayer.Character.Humanoid.Health > 20 and LocalPlayer.Character:WaitForChild("RightUpperLeg"):FindFirstChildOfClass("Motor6D") and v.Position.Y > -50 then | |
Teleport(v.CFrame) | |
wait(.5) | |
while FindCash() do | |
for j, s in pairs(game:GetService("Workspace").Ignored.Drop:GetDescendants()) do | |
if s:IsA("ClickDetector") and s.Parent and s.Parent.Name:find("Money") then | |
local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:wait() | |
local HumanoidRootPart = Character:WaitForChild("HumanoidRootPart") | |
if (s.Parent.Position - HumanoidRootPart.Position).magnitude <= 18 then | |
repeat | |
wait() | |
fireclickdetector(s) | |
until not s or not s.Parent.Parent | |
end | |
end | |
end | |
end | |
Teleport(Safespot) | |
wait(1.8) | |
break | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment