Is there any way to have helicopters with their blades work like start up slowly and make noise gradully speeding up?
Yes there is a playback speed property in any sounds you could also use volume if you need further help i’m here!
Do you know any scripts does this
I could make one i believe if that’s what you would like
Yes pls if you can.I would love that
` – 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
`
Most of the caps are just comments to help you incase you want to customize it.
Can you make it like a slowly graduating motor?
slow down the wait speed like make it longer
Also where is the sound for the heli?
I just got one out of the toolbox i thought you had one if not i can send you the link to one
Yes pls,if you can pls send it.
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.
Yes I asked him for sound and blades,do you have one for blades?
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
So what are you trying to figure out? How to increase the speed of a sound or object?
I want to make blades work like a helicopter it has sound and blades working (the back and top)
here is a sound that should work dont forget to loop it if you dont want it to end mid flying
Like the other guy said to make moving blades TweenService could work
“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
.