sagapiece
Copy the script code from the below code box and paste it in the executor window
--Auto Attack
getgenv().Loop = true
while wait() do
if getgenv().Loop == true then
local vuser = game:GetService("VirtualUser")
vuser:CaptureController()
vuser:ClickButton1(Vector2.new(1432,28,1034))
end
end
1 0
--max stats script (NOTE NEED AT LEAST 1 STAT POINT)
--made by Legend #0001
local stats = {
"Strength",
"Defense",
"DF",
"SwordPoints",
}
local statPoints = 375
for i = 1, statPoints do
for i = 1, #stats do
local stat = stats[i]
game:GetService("Players").LocalPlayer.PlayerGui.MainGui.MainFrame.StatsFrame.StatPoint:FireServer(stat, 0.5)
end
end
-- tween shit
_G.target = "Bandit Keith" -- Put NPC Name
Speed = 5 -- if it kicks u increase the number
TweenService = game:service'TweenService'
TweenInfo = TweenInfo.new(Speed)
TweenGoal = {}
--------------
getfenv().plr = game.Players.LocalPlayer
rs = game:service'RunService'.RenderStepped
t = true
while rs:wait() do
getfenv().plr.Character.Humanoid:ChangeState(10)
for i,v in pairs(workspace.NPCS:GetChildren()) do
if string.match(v.Name,_G.target) then
if v:FindFirstChild("HumanoidRootPart") then
TweenGoal.CFrame = v.HumanoidRootPart.CFrame
Tween = TweenService:Create(getfenv().plr.Character.HumanoidRootPart,TweenInfo,TweenGoal)
Tween:Play()
end
end
end
end