so i coded a wand that shoots fireballs right... i chagned the dmg so it does 15 hearts... but now EVERY projectile does 15 hearts, how do i fix that. ```on right click:
If player's tool is {firewand}:
if any:
{cooldown::%player%} is not set
{cooldown::%player%} is less than now
then:
set {cooldown::%player%} to now + 0.0001 seconds
shoot fireball from player
else:
send "&cYour wand is on cooldown!" to player
on projectile hit:
projectile is a fireball:
set {_damage} to 15
damage victim by {_damage}```