Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

How can i make a script for a rocket to rise untill it reaches a certain Height?

Asked by 1 year ago

I am thinking of using Vector3.New() In order to do this but i do not know how to do this, here is some info. I have a Rocket and i want the core position to rise untill it gets to a height then land

0
you could use tweenservice to move the position of the rocket BulletproofVast 1033 — 1y

1 answer

Log in to vote
0
Answered by 1 year ago
while rocketPart.Position.Y < "MaxHeight" do
    rocketPart.Position += Vector3.new(0, 0.01, 0)
    wait()
end
Ad

Answer this question