Answered by
4 years ago Edited 4 years ago
The humanoid of the Player's Character has a unique property called FloorMaterial. Wherever you're standing on, it will detect the material of it.
Example: if you step on a wooden part, the FloorMaterial property changes to WoodenPlanks/Wood!
You could use it like this:
1 | player = game.Players.LocalPlayer |
2 | char = player.Character or player.CharacterAdded:Wait() |
6 | script.Parent.Activated:Connect( function () |
7 | print (char.Humanoid.FloorMaterial) |
You can do if statements to produce different noises on different floors with this property!