I am currently making a tower defense game, and my towers are supposed to aim towards the enemy(its moving along the track) everything in the game is finished, but im stuck on this question and cannot find anything to help.
Here is your script! (Served hot and ready to go)
local enemy = workspace.enemy1 -- you could change this to loop over the enemies to find closest one. local me = script.Parent while true do me:SetPrimaryPartCFrame(CFrame.new(me.PrimaryPart.Position, enemy.Position)) -- there are different types of cframe, this one looks at the point. wait() end
if you need more info: