0% found this document useful (0 votes)
101 views3 pages

Arcane Lineage Auto Dodge Script

The script creates a GUI for a game that allows players to toggle auto dodge and auto attack features, as well as join a Discord server. It includes buttons for these functionalities and displays credits and keybind instructions. The script is not verified by ScriptBlox and should be used at the user's own risk.

Uploaded by

hoangj41daian
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
101 views3 pages

Arcane Lineage Auto Dodge Script

The script creates a GUI for a game that allows players to toggle auto dodge and auto attack features, as well as join a Discord server. It includes buttons for these functionalities and displays credits and keybind instructions. The script is not verified by ScriptBlox and should be used at the user's own risk.

Uploaded by

hoangj41daian
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

--[[

WARNING: Heads up! This script has not been verified by ScriptBlox. Use at
your own risk!
]]
local screenGui = [Link]("ScreenGui")
[Link] = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui")

local mainFrame = [Link]("Frame")


[Link] = [Link](0, 200, 0, 200)
[Link] = [Link](0.7, 0, 0.2, 0)
mainFrame.BackgroundColor3 = [Link](30, 30, 30)
[Link] = 0
[Link] = true
[Link] = true
[Link] = true
[Link] = screenGui

local corner = [Link]("UICorner")


[Link] = [Link](0, 8)
[Link] = mainFrame

local stroke = [Link]("UIStroke")


[Link] = [Link]
[Link] = [Link](255, 255, 255)
[Link] = 2
[Link] = mainFrame

local titleBar = [Link]("Frame")


[Link] = [Link](1, 0, 0, 25)
[Link] = [Link](0, 0, 0, 0)
titleBar.BackgroundColor3 = [Link](20, 20, 20)
[Link] = 0
[Link] = mainFrame

local titleCorner = [Link]("UICorner")


[Link] = [Link](0, 8)
[Link] = titleBar

local titleText = [Link]("TextLabel")


[Link] = [Link](1, 0, 1, 0)
[Link] = "Arcane Lineage"
titleText.TextColor3 = [Link](255, 255, 255)
[Link] = 1
[Link] = [Link]
[Link] = true
[Link] = 14
[Link] = titleBar

local function createButton(buttonText, yPosition, parent)


local button = [Link]("TextButton")
[Link] = [Link](1, -10, 0, 25)
[Link] = [Link](0, 5, 0, yPosition)
[Link] = buttonText
button.BackgroundColor3 = [Link](50, 50, 50)
button.TextColor3 = [Link](255, 255, 255)
[Link] = [Link]
[Link] = true

local buttonCorner = [Link]("UICorner")


[Link] = [Link](0, 6)
[Link] = button

[Link] = parent
return button
end

local autoDodgeButton = createButton("Auto Dodge: OFF", 30, mainFrame)


_G.AutoDodge = false

local function autoDodgeLoop()


while _G.AutoDodge do
pcall(function()
local args = {[1] = true, [2] = true}
local eventName = "DodgeMinigame"
local remote =
game:GetService("ReplicatedStorage").[Link]
remote:FireServer(args, eventName)
print("[EXPLOIT] Auto Dodge Activated!")
end)
wait(0.05)
end
end

autoDodgeButton.MouseButton1Click:Connect(function()
_G.AutoDodge = not _G.AutoDodge
[Link] = "Auto Dodge: " .. (_G.AutoDodge and "ON" or "OFF")
if _G.AutoDodge then
[Link](autoDodgeLoop)
end
end)

local autoAttackButton = createButton("Auto Attack: OFF", 60, mainFrame)


_G.AutoAttack = false

local function autoAttackLoop()


while _G.AutoAttack do
pcall(function()
for _, enemy in
pairs(game:GetService("Workspace").Living:GetChildren()) do
if enemy:FindFirstChild("HumanoidRootPart") and not
[Link]:FindFirstChild([Link]) then
local attackType = "Attack"
local attackName = "Strike"
local args = {Attacking = enemy}
local remote =
game:GetService("ReplicatedStorage").PlayerTurnInput
remote:InvokeServer(attackType, attackName, args)
print("[EXPLOIT] Auto-Attacked:", [Link])
end
end
end)
wait(0.1)
end
end

autoAttackButton.MouseButton1Click:Connect(function()
_G.AutoAttack = not _G.AutoAttack
[Link] = "Auto Attack: " .. (_G.AutoAttack and "ON" or "OFF")
if _G.AutoAttack then
[Link](autoAttackLoop)
end
end)

local discordButton = createButton("Join Discord", 90, mainFrame)


discordButton.BackgroundColor3 = [Link](25, 117, 255)
discordButton.MouseButton1Click:Connect(function()
setclipboard("[Link]
print("[INFO] Discord link copied to clipboard!")
end)

local creditLabel = [Link]("TextLabel")


[Link] = [Link](1, 0, 0, 20)
[Link] = [Link](0, 0, 0, 120)
[Link] = "Made by VenusLockScript"
creditLabel.TextColor3 = [Link](255, 255, 255)
[Link] = 1
[Link] = [Link]
[Link] = true
[Link] = mainFrame

local keybindLabel = [Link]("TextLabel")


[Link] = [Link](1, 0, 0, 20)
[Link] = [Link](0, 0, 0, 140)
[Link] = "Press K to toggle GUI"
keybindLabel.TextColor3 = [Link](200, 200, 200)
[Link] = 1
[Link] = [Link]
[Link] = true
[Link] = mainFrame

local inputService = game:GetService("UserInputService")


[Link]:Connect(function(input, gameProcessed)
if [Link] == [Link].K and not gameProcessed then
[Link] = not [Link]
end
end)

You might also like