xxxxxxxxxx
export var speed = 100 # it will show variable speed in inspector
xxxxxxxxxx
@export var health = 100 # Now appears in the inspector as an mutable value
# Example: Now I change var health in the inspector to 10, it will appear as 10 in my script
print(health) # Prints 10 now