#Is .Position still a valid code?
1 messages · Page 1 of 1 (latest)
Is either tower or enemy a model?
You'll need to use :GetPivot to get their positions instead
** You are now Level 1! **
Thank you! I needed to change the tower to :GetPivot
Now I need to figure out how Magnitude works-
Magnitude is a math thing. It'd be a single number that is the combined distance on the X, Y, & Z axis
Thing is, when I try doing local distance = (tower:GetPivot() - enemy.Position).Magnitude to get a single number, it says magnitude is not a valid member of CFrame
getpivot returns a cframe value, you'll need to do tower.PrimaryPart.Position to fix it
Ahhh, thanks!