Drop tool as if it were in workspace

MADE BY ic3
FEATURES:

  • DROPS TOOLS AS LONG IT USES ROBLOX’S TOOL SYSTEM
  • this isn’t only a drop script, it can be used to take control of another player in certain games
  • Instructions on how to use:
  • Make sure you put the tool’s name you want to drop in the ToolNames array, this works with multiple tools. Name doesn’t have to be exact or case sensitive
  • Equip a tool in your hand that isn’t any of the tools you want to drop
  • Execute the script
  • Re-equip the tool you were holding, then your alt or friends can pick up those tools
  • example video: https://streamable.com/pe7whq

UNIVERSAL GAMES

SCRIPTS: [2]

local ToolNames = { 'tool_name_like_some_devil_fruit_or_somethin_idk' }

-- DO NOT MODIFY BELOW --

local LocalPlayer = game:GetService'Players'.LocalPlayer

if not LocalPlayer.Character then return end
local Humanoid = LocalPlayer.Character:FindFirstChildOfClass'Humanoid' if not Humanoid then return end

local NewParent = LocalPlayer.Character:FindFirstChildOfClass'Tool'

Humanoid:UnequipTools()

for _, Tool in pairs(LocalPlayer.Backpack:GetChildren()) do
    for _, Name in pairs(ToolNames) do
        if Tool.Name:lower():sub(1, #Name) == Name:lower() then
            Tool.Parent = LocalPlayer.Character
            Tool.Parent = NewParent
            Tool.Parent = LocalPlayer.Backpack
            Tool.Parent = NewParent
        end
    end
end

DROP SCRIPT

local p = game:GetService'Players'.LocalPlayer

for i, v in pairs(p.Backpack:GetChildren()) do
    local T = v:FindFirstChildOfClass'Tool'

    if T then
        v.Parent = p.Character
        T.Parent = p.Backpack
    end
end

PICK UP SCRIPT

⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

📋 Notice: If you find any of the scripts patched or not working, please report it to Forever4D through Discord. The script will be removed or marked as patched!