Find any script for Roblox

Enter the name of the game or script.

Script – OP Ninja simulator

Thank you for using our website
Your script:

				
					local Config = {
    WindowName = "OP NINJA SIMULATOR",
Color = Color3.fromRGB(243,4,4),
Keybind = Enum.KeyCode.RightShift -- Doesn't work
}
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/AlexR32/Roblox/main/BracketV3.lua"))()
local Window = Library:CreateWindow(Config, game:GetService("CoreGui"))
local Tab1 = Window:CreateTab("Main")
local Section1 = Tab1:CreateSection("Autofarming Section")
function tool()
    for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
        if v.Name ~= "Shuriken"  then
            if v.Name ~= "TeleportTool" then
          local tools = v
          return tools
            end
        end
    end
end
local autofarm = Section1:CreateToggle("Autofarm", nil, function(State)
local character = game.Players.LocalPlayer.Character
for i,v in pairs(character:GetChildren()) do
if v:IsA("Tool") then
    equipped = true
    else
  equipped = false
    end
end
    local tool = tool()
    if equipped ~= true then
game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
end
s = State
while s == true do wait()
local vu = game:GetService("VirtualUser")
vu:Button1Down(Vector2.new())
                end
        end)
local autoequip = Section1:CreateToggle("Auto Equip Katana", nil, function(State)
  tog = State
  while tog do wait()
        local tool = tool()
        game.Players.LocalPlayer.Character.Humanoid:EquipTool(tool)
      end
end)