Hello there, I have a part that I want the material to be changed from plastic to neon upon contact with the part, and after one second, the material is changed back to plastic. Here's the script I used. The script is located in the part in the workspace.
1 | script.Parent.Touched:Connect( function (hit) |
2 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
3 | hit.Material = "Neon" |
4 | wait( 1.0 ) |
5 | hit.Material = "Material" |
6 | end |
7 | end ) |
Please help.
This script changed the material to Neon and after 1 second it changes back to Plastic. Instructions: Insert a "Part" into "Workspace" Insert a "Script" into "Part" that's inside "Workspace" and copy and paste or just type what's below.
01 | db = false |
02 |
03 | script.Parent.Touched:Connect( function (hit) |
04 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
05 | if db = = false then |
06 | db = true |
07 | script.Parent.Material = Enum.Material.Neon |
08 | wait( 1 ) |
09 | script.Parent.Material = Enum.Material.Plastic |
10 | db = false |
11 | end |
12 | end |
13 | end ) |
Although I have not found an answer, this method I used was able to turn the humanoid into the forcefield material. I am pretty sure humanoid figures can't be materialized. Here is my code
01 | local debounce = false |
02 |
03 | script.Parent.Touched:Connect( function (hit) |
04 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
05 | for i,v in pairs (hit.Parent:GetDescendants()) do |
06 | if v:IsA( "BasePart" ) then |
07 | v.Material = Enum.Material.ForceField |
08 | end |
09 | end |
10 | end |
11 | end ) |
You can also use hit.Parent:GetChildren()
but hit.Parent:GetDescendants will go through all objects from top to bottom. I can't give a perfect answer to your problem though, but this is a good step to your goal though