--Uploaded On https://youtube.com/AhmedMode
--Published on https://ahmedmode.com
--Credits goes to the devs!
--Scripts Below:
--Script
--Auto Steal And INF Money:
loadstring(game:HttpGet("https://raw.githubusercontent.com/sylolua/PoopHub/refs/heads/main/Loader",true))()
--Kill Aura Script:
local Players = game:GetService("Players")
local StarterGui = game:GetService("StarterGui")
local LocalPlayer = Players.LocalPlayer
local auraActive = true
local Backpack = LocalPlayer:WaitForChild("Backpack")
local Abilities = Backpack:WaitForChild("Abilities"):WaitForChild("Abilities")
local HeavyAttack = Abilities:WaitForChild("HeavyAttack")
local AttackEvent = HeavyAttack:WaitForChild("RemoteEvent")
-- Initial notification
StarterGui:SetCore("SendNotification", {
Title = "Combat System",
Text = "Auto-attack enabled",
Duration = 2
})
local combatLoop
combatLoop = task.spawn(function()
while auraActive do
local char = LocalPlayer.Character
if char then
local root = char:FindFirstChild("HumanoidRootPart")
if root then
local pos = root.Position
AttackEvent:FireServer(CFrame.new(pos), Vector3.new(pos.X, pos.Y, pos.Z))
end
end
task.wait()
end
end)
function toggleCombat()
auraActive = not auraActive
if auraActive then
StarterGui:SetCore("SendNotification", {
Title = "Combat System",
Text = "Auto-attack enabled",
Duration = 2
})
combatLoop = task.spawn(function()
while auraActive do
local char = LocalPlayer.Character
if char then
local root = char:FindFirstChild("HumanoidRootPart")
if root then
local pos = root.Position
AttackEvent:FireServer(CFrame.new(pos), Vector3.new(pos.X, pos.Y, pos.Z))
end
end
task.wait()
end
end)
else
StarterGui:SetCore("SendNotification", {
Title = "Combat System",
Text = "Auto-attack disabled",
Duration = 2
})
end
end
Views: 13
