Custom Footsteps in experience. (No sound)

Hey devs,

So I’ve Benn trying to add custom footsteps into my experience. But I think something went wrong, because when I paste the ID of audio asset and then play test the game there’s no footstep sound. (Both sounds are missing, the original Roblox one and the custom one as well.)

Running = {
		SoundId = "rbxasset://1244506786",
		Looped = true,
		Pitch = 1.85,

So I looked up some tutorials but still didn’t found the issue.
(Tutorial I looked up: https://youtu.be/VddrkeYhVwk?si=v5P0NjS-lI58cMBd)

Please leave comment if you have an idea what can cause the issue.

Great day to all devs out there!
-jeziskrista

Try changing “rbxasset://1244506786” to “rbxassetid://1244506786”

1 Like

Thank you so much! Helped a lot!

No problem, but the reason why this works is because rbxasset:// refers to an asset that is inside the roblox files, for example the default cursor and rbxassetid:// refers to an asset uploaded to roblox
for example rbxasset://Textures/somebuiltintexture
rbxassetid://idtosomeasset

1 Like

this solution is so sigma “randomlletters”

Thank you for explaining! Now I know what to do next time. :slight_smile: