of     1   

CoolJohnnyboy
#126295446Thursday, February 20, 2014 10:32 PM GMT

I'm trying to make a script that would unequip and remove a tool from a player. However, I am confused on how to do so. Does anyone have any examples?
mycheeze
#126295689Thursday, February 20, 2014 10:34 PM GMT

You get a script that finds the player's starterpack and finds the tool and removes it.
MarioKartAddict
#126295795Thursday, February 20, 2014 10:35 PM GMT

nope find their Backpack and remove it i don't think this will unequip it though
CoolJohnnyboy
#126295964Thursday, February 20, 2014 10:37 PM GMT

Actually when a tool is equipped on a player and is being used it cannot be removed using Backpack.
zars15
#126296057Thursday, February 20, 2014 10:37 PM GMT

Why unequip and delete, when you can just simply delete. When player has equipped a tool, it will get moved from backpack to character. So while you are deleting tools, do this: for num,obj in pairs(character:GetChildren()) do if obj:IsA("Tool") then obj:Destroy() end end
islandmaker2012
#126296075Thursday, February 20, 2014 10:38 PM GMT

Ok,so u want it to unequipp without them doing so? plrname = "nameofplrhere" Workspace[""..plrname..""]ToolName.Parent = game.Players[""..plrname..""].Backpack
islandmaker2012
#126296161Thursday, February 20, 2014 10:39 PM GMT

Actually like guy a couple above me said,just remove it,it'll be unequipped
CoolJohnnyboy
#126296257Thursday, February 20, 2014 10:39 PM GMT

It's one of those weird tools that when you remove it from the player it wouldn't let you equip a new one
CoolJohnnyboy
#126296339Thursday, February 20, 2014 10:40 PM GMT

@island Your script actually worked. I'll probably use it. Thanks.
islandmaker2012
#126296446Thursday, February 20, 2014 10:41 PM GMT

Np:)
BEART12
#126296667Thursday, February 20, 2014 10:43 PM GMT

Right this is how i did it and it worked: Checked player for a tool put it into players backpack and remove, it unequipped's it if you send it to backpack as player has not got a tool.
islandmaker2012
#126296881Thursday, February 20, 2014 10:45 PM GMT

glad to help :)

    of     1