local CrackingTheTreePart = Instance.new("Part")
if CrackingTheTreePart.Size < Vector3.new(1.5, 0.2, 1.4) then
CrackingTheTreePart.Size += CrackingTheTreePart.Size + Vector3.new(TreeAttackSizePlus,0,0)
end
Error:
Players.Dquvo.Backpack.StarterAxe.LocalScript:14: Players.Dquvo.Backpack.StarterAxe.LocalScript:20: attempt to compare Vector3 < Vector3
Vector comparison doesn’t exist, but you can check if vector1 - vector2 = (0, 0, 0), or use metatables to create your own comparisons. Comparing each component is also fine but if you want to compare entire vectors it becomes annoying