Simple question: How do you get the actual value from an Enum?
For example, you try to get the humanoid’s FloorMaterial, and you get this:
print(humanoid.FloorMaterial)
--Enum.Material.Plastic
However, how do I extract the important string “Plastic” out of that Enum?
Enum.Material.Plastic
--How do I get the string "Plastic" from that Enum?
If you have any suggestions or solutions, you can comment them down. Thank you.