I have made a simple script:
a = script.Parent
while true do
a.Transparency = 1
wait(1)
a.Transparency = 0
end
this script makes an object transparent and non transparent BUT to my suprise it didnt work!!!
but when i used this script:
while true do
script.Parent.Transparency = 0
wait(1)
script.Parent.Transparency = 1
script.Parent.Transparency = 1
wait(1)
script.Parent.Transparency = 0
end
it worked perfectly, this makes Rbx.Lua strange becuase while loops arent supose to happen like this becuase while loops execpt everything i also made a video but i am not allowed to give out of site links
|