Hello! I have been putting some finishing touches on my latest model and have some flashing parts on it. Basicly there are four parts; Two have this script in it:
while true do wait() wait(0.1) script.Parent.Transparency = 1 wait(0.1) script.Parent.Transparency = 0 end
And the other two have this script in it:
while true do wait() wait(0.1) script.Parent.Transparency = 0 wait(0.1) script.Parent.Transparency = 1 end
Basicly the parts seem to alternate in an infinite loop. But the problem is they eventualy get unsyncronized and they flash at random times and together it looks really messy. IS ther anyway to stop this?