What do you want to achieve? Keep it simple and clear!
I want to make this broken lighting effect by changing the material but they don’t change
What is the issue?
The material don’t change at all.
What solutions have you tried so far?
I checked the part but the material says neon only, I added print statements but they ran without any problems. I also checked the dev page so I changed the material change with part = Enum.Material.(Material here)
The part I was trying to change the material of is a 3D Text sign
local part = script.Parent
while true do
part = Enum.Material.Neon
print("Changed Material for part i")
wait(3)
part = Enum.Material.SmoothPlastic
print("Changed Material for part i")
wait(5)
end