I Made a health pack tool but i just need it to drop on the ground when you equip it. any help?
local p= game.Players.LocalPlayer local tool= script.Parent function equipped() wait() -- what will i put here for it to drop end tool.Equipped:connect(equipped)
since there is no method for making a tool de-equip, we just need to assign the tool's parent. Usually when a player manually de-equips a tool, it will go to the workspace!
local p= game.Players.LocalPlayer local tool= script.Parent function equipped() wait() tool.Parent = game.Workspace --Removes the tool from the player and places it in the workspace end tool.Equipped:connect(equipped)