Can somebody help me to make unequip tool in for i, v in pairs

What i want to achieve is…

To make a script that unequip a tool before it clears it so it will allow my script on coil that if its unequip then it will delete some speed of the body :

Script :

if v.Character and v.Character:FindFirstChildOfClass("Tool") then
				v.Character:FindFirstChildOfClass("Tool").Unequipped()
				v.Character:FindFirstChildOfClass("Tool"):Destroy()
				
			end
		end

You mind re-explaining it? Your goal is unclear mumbo jumbo.

I mean before all tools destroy the script must unequip first…

you mean

if v.Character and v.Character:FindFirstChildOfClass("Tool") then
	v.Character.Humanoid:UnequipTools()
	v.Character:FindFirstChildOfClass("Tool"):Destroy()			
	end
end

?

1 Like

Yazz thats what im talking about dude.