Functions: mark right path

Installation guide:
Copy the script from the button below.
Run any Injector (We recommend KRNL Injector)
Install it, insert the script and click execute
Enjoy it)
Thank you for using our website
Your script:
while true do
wait(1)
for i,v in pairs(game.Workspace["Glass Bridge"].GlassPane:GetDescendants()) do
if v.ClassName == "Part" then
if v.CanCollide == false then
v.Transparency = 0
v.BrickColor = BrickColor.new("Really red")
else
v.BrickColor = BrickColor.new("Lime green")
v.Transparency = 0
end
end
end
end