Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How do i make walking sound?
- TheYoshiCoder
-
New Scratcher
1 post
How do i make walking sound?
So when my character moves footsteps can be heard?
Having a bit of trouble at the moment.
Having a bit of trouble at the moment.
- footsocktoe
-
Scratcher
1000+ posts
How do i make walking sound?
I think I remember seeing some footstep sounds in the Scratch sound library. If not, I'm sure soundbible.com or one of the other free sound sites has them.
- Brontosplachna
-
Scratcher
100+ posts
How do i make walking sound?
If you want the steps to be precisely timed, I suppose you could use
play drum ( ... v) for (0.2) beats
- -SMS-
-
Scratcher
1 post
How do i make walking sound?
So when my character moves footsteps can be heard?Well, I'm having trouble with this myself, but for the voices, sounds, etc. in my Stop-Motions, I use the CAD u37 microphone, but if you can't afford that (and maybe it's just that you don't have enough money at the moment), then you can simply buy a Webcam, and they're usually only up to about £14.08 ($20). Most Webcams can record audio as well as record your face (out of a lens (which is what most of the camera is made of*). It hooks to the top of your monitor. If you don't have money for that either, then you can mix around sounds using the ones from the Scratch Sound Library. And if you know how to do the editing with the Library's sounds, then you can look on YouTube (or even on Scratch!) for a Tutorial on how to do that certain editing. If you can't find what you're looking for, then I can't help you any farther…
Having a bit of trouble at the moment.
But I still hope this helped at least a little!

*By this I mean that usually a camera is a rectangular box with a lens, but this (a Webcam) is a cylindrical/spherical-shaped camera that has a lens for almost all of it's body; the rest is for the clip and the technological circuitry.
Last edited by -SMS- (April 17, 2016 20:39:58)
- gor-dee
-
Scratcher
1000+ posts
How do i make walking sound?
I got some footstep sounds from Soundbible take I used in my zombie game https://scratch.mit.edu/projects/17633935/
- soniccairo
-
Scratcher
1 post
How do i make walking sound?
i have the footstep sounds down but how do i loop it when my sprite is walking
- TomasDev
-
Scratcher
100+ posts
How do i make walking sound?
So when my character moves footsteps can be heard?
Having a bit of trouble at the moment.
when [w v] key pressed
play sound [footstep v]
move (10) steps
Hope this works.
Last edited by TomasDev (May 28, 2018 17:12:29)
- 57847BC
-
Scratcher
1 post
How do i make walking sound?
when green flag clickedHopefully this helped
forever
if <> then
<key [ right arrow] pressed?>
play sound [ Footsteps]
if <> then
<key [ left arrow] pressed?>
play sound [ Footsteps]
<key [ up arrow pressed?>
play sound [ Footsteps]
<key [ down arrow pressed?>
play sound [ Footsteps]
end
end
end
Last edited by 57847BC (May 15, 2019 09:20:10)
- deck26
-
Scratcher
1000+ posts
How do i make walking sound?
Please don't necropost, this topic is more than a year old. If you need practice with Scratchblocks there's a sticky topic for that.when green flag clickedHopefully this helped
forever
if <> then
<key [ right arrow] pressed?>
play sound [ Footsteps]
if <> then
<key [ left arrow] pressed?>
play sound [ Footsteps]
<key [ up arrow pressed?>
play sound [ Footsteps]
<key [ down arrow pressed?>
play sound [ Footsteps]
end
end
end
- vony01023
-
New Scratcher
2 posts
How do i make walking sound?
hello if anyone is here I tried this one but it didn't work for two separate keys u can try to do something about it
- vony01023
-
New Scratcher
2 posts
How do i make walking sound?
when green flag clicked
forever
if <key [d v] pressed?> then
play sound [footstep v] until done
when green flag clicked
forever
if <not <key [d v] pressed?>> then
stop all sounds
end
end
- johnelr
-
Scratcher
1000+ posts
How do i make walking sound?
record your footsteps or get something with freesound
freesound will tell you you need an account but you can get the sounds without an account via inspect element
freesound will tell you you need an account but you can get the sounds without an account via inspect element
- natdilt
-
Scratcher
100+ posts
How do i make walking sound?
Idk but griffpatch did it somehow with paper Minecraft. Maybe you could figure out how that works.
- Ncarter54
-
Scratcher
21 posts
How do i make walking sound?
When I did it it constantly made the sound, so the footsteps just sounded like glitching sounds
- ncg__
-
Scratcher
1 post
How do i make walking sound?
When I did it it constantly made the sound, so the footsteps just sounded like glitching soundsI got the same result, anybody know how to actually do it?
- 27schwenkm
-
Scratcher
1 post
How do i make walking sound?
[quote=vony01023][scratchblocks]
when green flag clicked
forever
if <key [d v] pressed?> then
play sound [footstep v] until done
when green flag clicked
forever
if <not <key [d v] pressed?>> then
stop all sounds
end
end
[/quote]
can't you just make an
if <key [d v] pressed?> then
play sound [footstep v] until done
else
stop all sounds
end
Last edited by 27schwenkm (May 27, 2022 22:10:43)
- Harakou
-
Scratcher
1000+ posts
How do i make walking sound?
Hi! Thank you for offering your help, but this thread is pretty old - I don't think it's relevant anymore. When you respond to a topic, please make sure it's recent and the original poster still needs an answer. Thanks!when green flag clicked
forever
if <key [d v] pressed?> then
play sound [footstep v] until done
when green flag clicked
forever
if <not <key [d v] pressed?>> then
stop all sounds
end
end
[/quote]
can't you just make an
if <key [d v] pressed?> then
play sound [footstep v] until done
else
stop all sounds
end
Last edited by Harakou (May 28, 2022 22:43:24)
- Discussion Forums
- » Help with Scripts
-
» How do i make walking sound?