How do I make a plane?

Hello! Is there a way to make an easy plane script like in Naval Warfare? I’ve been searching the internet for days if not weeks on how to do it and did not conclude. So, how can I do it?

4 Likes

This might help you. I’m not too sure tho.

1 Like

Thanks, but I wanted help on how to make a plane fly and all that. But that’s also needed too! Thanks.

2 Likes

So basically, first you need the base (the “engine”).
We will have a point (named: target) and the engine (named: main)
The system goes like this:

local magnitude = (target.Position - main.Position).Magnitude
local speed = 10 --the plane's speed
while wait() do
main.AssemblyLinearVelocity = ((target.Position - main.Position)/magnitude)*speed --without the magnitude, the further away the target will be, the faster the plane will go
main.CFrame = CFrame.lookAt(main.Position, target.Position) --rotation
end
2 Likes