your condition in your if is wrong. you should do it like this:
if v.Name == "HardJumpBot" or v.Name == "EasyJumpBot" then
v:Destroy()
end
Also, because a string returns true as it contains something that’s why the if-condition is always true and other children of workspace is affected by it.