Created by Vep#1530
Features:
- AUTO BLOCK SHADOW
- OPEN SOURCE
SCRIPT:
autoblock = true
while autoblock do wait()
pcall(function()
for i,v in pairs(workspace:GetChildren()) do
if v.Name == game.Players.LocalPlayer.Name.."'s Shadow Image" then
if v.Config.Attacking.Value == true then
local args = {
[1] = "Block",
[2] = true
}
game:GetService("ReplicatedStorage").TurboRemotes.Combat:FireServer(unpack(args))
wait()
else
local args = {
[1] = "Block",
[2] = false
}
game:GetService("ReplicatedStorage").TurboRemotes.Combat:FireServer(unpack(args))
wait(1)
end
end
end
end)
end