Put this after the part that creates the droplet:
Kill = Instance.new("Script")
Kill.Name = "KillScript"
Kill.Source = [[
Droplet = script.Parent
function onTouch(hit)
if hit.Parent:findfirstchild("Humanoid") ~= nil then
hit.Parent:BreakJoints()
end
end
Droplet.Touched:connect(onTouch)
]]
Kill.Parent = WHATEVER THE DROPLET IS CALLED |