Helicopter Blades

Is there any way to have helicopters with their blades work like start up slowly and make noise gradully speeding up?

2 Likes

Yes there is a playback speed property in any sounds you could also use volume if you need further help i’m here!

2 Likes

Do you know any scripts does this

1 Like

I could make one i believe if that’s what you would like

1 Like

Yes pls if you can.I would love that

2 Likes

` – PUT THIS SCRIPT INSIDE THE SOUND!
function speedup()
script.Parent.PlaybackSpeed = 0.4 – THIS IS THE STARTING SOUND SPEED EDIT IF YOU LIKE
wait(4) – WAIT UNTIL SPEED UP EDIT IF YOU LIKE LONGER FOR SLOW SPEEDUP
script.Parent.PlaybackSpeed = 0.5 – SPEEDUP SPEED 1 EDIT IF YOU LIKE
wait(0.5) – WAIT UNTIL SPEED UP EDIT IF YOU LIKE
script.Parent.PlaybackSpeed = 0.6-- SPEEDUP SPEED 2 EDIT IF YOU LIKE
wait(0.5) – WAIT UNTIL SPEED UP EDIT IF YOU LIKE
script.Parent.PlaybackSpeed = 0.7-- SPEEDUP SPEED 3 EDIT IF YOU LIKE
wait(0.5) – WAIT UNTIL SPEED UP EDIT IF YOU LIKE
script.Parent.PlaybackSpeed = 0.8-- SPEEDUP SPEED 4 EDIT IF YOU LIKE
wait(0.5) – WAIT UNTIL SPEED UP EDIT IF YOU LIKE
script.Parent.PlaybackSpeed = 0.9-- SPEEDUP SPEED 5 EDIT IF YOU LIKE
wait(0.5) – WAIT UNTIL SPEED UP EDIT IF YOU LIKE
script.Parent.PlaybackSpeed = 1
------- TO ADD MORE JUST COPY AND PASTE FROM ABOVE AND EDIT THE VALUES -------
end

–CALL THE FUNCTION BY SAYING speedup() after something happens or whenever you want the sound to speed up
`

1 Like

Most of the caps are just comments to help you incase you want to customize it.

1 Like

Can you make it like a slowly graduating motor?

1 Like

slow down the wait speed like make it longer

1 Like

Also where is the sound for the heli?

1 Like

I just got one out of the toolbox i thought you had one if not i can send you the link to one

1 Like

Yes pls,if you can pls send it.

1 Like

That script is the most inefficient way to do this. Even a for loop would be better. @OP, use Tween Service to tween the speed of the helicopter blades up. PlaybackSpeed is for audios btw.

2 Likes

Yes I asked him for sound and blades,do you have one for blades?

1 Like

For 1 yes i thought he meant audio

For 2 i did not need to put a whole bunch of time into this to think of shorter ways it still works

1 Like

So what are you trying to figure out? How to increase the speed of a sound or object?

1 Like

I want to make blades work like a helicopter it has sound and blades working (the back and top)

1 Like

here is a sound that should work dont forget to loop it if you dont want it to end mid flying

Here!

2 Likes

Like the other guy said to make moving blades TweenService could work

1 Like

“It still works” doesn’t mean its a good way to write scripts.

Example of working but terrible code:
text = "H"
wait(1)
text = "He"
wait(1)
text = "Hel"
wait(1)
text = "Hell"
wait(1)
text = "Hello"

While the code above may work, that doesn’t mean it should be used. TweenService is the way to go when smoothly changing a property, like Rotation or PlaybackSpeed.

2 Likes