Created by Bored#1822
Features:
- COLLECT ALL ORBS
- DEV NOTES:
- Doesn’t collect the Bomb Orb I was too lazy to do that. Sorry, you can figure out how to make that yourself, I do not condone exploiting Sword Fighting games that is fucking cringe if you do that, you should reconsider about your life choices sure I made this script, but I’m in no way, shape or form willing to use it on a fun game.
GAME LINK:
WAVE SWORD BOTS
SCRIPT:
getgenv().Orbs = true
spawn(function()
local plr = game:GetService("Players").LocalPlayer.Character.Head
local boss = game:GetService("Workspace").DeathOrb.BossOrbTemplate2
local death = game:GetService("Workspace").DeathOrb.DeathOrb.base
while wait() do
if not getgenv().Orbs then break end
for i,v in pairs(game:GetService("Workspace").Orbss:GetDescendants()) do
if v.Name == "TouchInterest" and v.Parent then
firetouchinterest(plr, v.Parent, 0)
firetouchinterest(plr, boss, 0) -- remove if boss orb isnt being collected
firetouchinterest(plr, death, 0) -- remove if death orb isnt being collected
end
end
end
end)