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

How to change default sounds?

Asked by 4 years ago

Hey guys can you please give me an answer how to change the default sounds in roblox studio?

1 answer

Log in to vote
0
Answered by 4 years ago

Are you talking about which sound gets played if the character is running, splashing into water, land down from a fall?

If so, go to Studio. Press PlayTest. If you look into the childrens of your character you'll see a script named "Sound". Open this up and go down the script where you'd find:

CreateNewSound("GettingUp", "rbxasset://sounds/action_get_up.mp3", false, 1, head)
CreateNewSound("Died", "rbxasset://sounds/uuhhh.mp3", false, 1, head) 
CreateNewSound("FreeFalling", "rbxasset://sounds/action_falling.mp3", true, 1, head)
CreateNewSound("Jumping", "rbxasset://sounds/action_jump.mp3", false, 1, head)
CreateNewSound("Landing", "rbxasset://sounds/action_jump_land.mp3", false, 1, head)
CreateNewSound("Splash", "rbxasset://sounds/impact_water.mp3", false, 1, head)
CreateNewSound("Running", "rbxasset://sounds/action_footsteps_plastic.mp3", true, 1.85, head)
CreateNewSound("Swimming", "rbxasset://sounds/action_swim.mp3", true, 1.6, head)
CreateNewSound("Climbing", "rbxasset://sounds/action_footsteps_plastic.mp3", true, 1, head)

I believe this is where you fill in your desired sounds for each action. Copy this and paste this into StarterPlayer > StarterCharacterScripts.

I never actually tried this, but this should work. Hope this has been of help!

0
I meant copy the "Sound" script into StarterPlayer > StarterCharacterScripts. Thought i'd clear that up logelliptic 0 — 4y
0
Oh, just tried it. It does work! logelliptic 0 — 4y
0
So your way is not working? Sanja19 5 — 4y
0
No, it DOES work. Make your desired modifications in the "Sound" script and copy and paste it into StarterPlayer > StarterCharacterScripts. logelliptic 0 — 4y
Ad

Answer this question