Our Discord Channel Our Telegram

Script Description

Auto Sell Items – Automatically sells specified items or arrows for in-game currency without manual input.

Key Functions

1 listed functions

✓ Auto Sell Items – Automatically sells specified items or arrows for in-game currency without manual input.

Script Code

23 lines · 589 B · Lua

Review the code before running it. Use scripts responsibly and only with tools you trust.

local itemselling = {"Rokakaka Fruit","Arrow","Water"} -- PUT THE TIMES U WANT TO SELL

function sell()
local sell = game:GetService("ReplicatedStorage").BismalqStuff.Remotes.Sell
sell:FireServer()
end

function sellitem(item)
  local player = game.Players.LocalPlayer
  local back = player.Backpack
  for i,v in pairs(back:GetChildren())do
    for a,b in pairs(itemselling)do 
      if v.Name == b then
        local sellitem = v
        v.Parent = player.Character
        sell()
        wait(0.1)
      end
    end
  end
end
sellitem(itemselling)
print("finished")

FAQ

Is this Old a Bizarre Day script keyless?

This script is currently marked as NO KEY.

What features does this script include?

Auto Sell Items – Automatically sells specified items or arrows for in-game currency without manual input.

How do I use this script?

Copy the Lua code from the Script Code section and review it before running it in your preferred Roblox script executor.

Comments

0

No comments yet.