Having Issues With Tweens

Godot Version

4.4.1.x

Question

So I’m using a radar graph plugin and I’m using tweens as a smooth animation or polish. The problem is that i have 5 o theses graphs, and when I create a tween it links through all 5 graphs. I don’t fully understand why it does this, I’m assuming its because i created the tweens all at the same time. Does anyone have any ideas on how to fix the issue?

func _define_mission_radar_graph():
	var tween: Tween = $".".create_tween().set_parallel()
	

	for i in range(0, 5):
		tween.tween_property(
		$mission, "items/key_%d/value" %i, mission_info.skills[i], 0.3)

Is $mission a resource? Because if so, then it’s not a tween issue, but the fact that resources are shared by default.

How do you call _define_mission_radar_graph()?