I need to create the script, which need to play if you touch the part. I want to create some place, and I need to make it work with FE.(Filtering Enabled) Please, help me!
Assuming the script is parented to the part and the sound is also parented and named 'Sound':
1 | script.Parent.Touched:Connect( function () script.Parent.Sound:Play() end ) |
You place this script inside the part with a Sound named Sound like a child of the Script Like this
1 | script.Parent.Touched:Connect( function () script.Sound:Play() |
If this worked for you please accept the answer.