I want it so that when you step on a brick, it makes a realistic noise, so if it were grass it would sound like you're walking through grass. Thanks.
This isn't a request site. Read the question page before asking. Thanks.
You're gonna need an on touch script. Get yourself a ring (Sonic The Hedgehog) from the library on Roblox and use that script for the grass part with the sound it comes with.
People seem to be mad because you are requesting something. Well it's pretty easy so I don't mind. Try something like this.
local s = Instance.new("Sound") s.Parent = game.Players.LocalPlayer s.SoundId = "321159602" --Insert ID here. Pretty sure it has to be the rbx asset ID s.Looped = false s.Volume = 10 game.Workspace.Grass.Touched:connect(function() --Assuming it's a part and not a model s:Play() --Only keep this part if the sound clip is too long and needs to stop wait() --However much you'd like s:Stop()
Closed as Not Constructive by RubenKan, GoldenPhysics, and AZDev
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?