Message
Message
WARNING: Heads up! This script has not been verified by ScriptBlox. Use at
your own risk!
]]
local screenGui = Instance.new("ScreenGui")
screenGui.Parent = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui")
button.Parent = parent
return button
end
autoDodgeButton.MouseButton1Click:Connect(function()
_G.AutoDodge = not _G.AutoDodge
autoDodgeButton.Text = "Auto Dodge: " .. (_G.AutoDodge and "ON" or "OFF")
if _G.AutoDodge then
task.spawn(autoDodgeLoop)
end
end)
autoAttackButton.MouseButton1Click:Connect(function()
_G.AutoAttack = not _G.AutoAttack
autoAttackButton.Text = "Auto Attack: " .. (_G.AutoAttack and "ON" or "OFF")
if _G.AutoAttack then
task.spawn(autoAttackLoop)
end
end)