of     1   

RinxfulROBLOX
#220999623Monday, July 10, 2017 8:53 PM GMT

Ok, I did this script and when I did a while true do loop, it did not work, here is my script! while true do game.Workspace.Elmo.Transparency = 0 wait(5) game.Workspace.Elmo.Transparency = 0.3 game.Workspace.Elmo.CanCollide = true game.Workspace.Elmo.BrickColor = BrickColor.Red() wait(1.90) game.Workspace.Elmo.BrickColor = BrickColor.Yellow() wait(1.90) game.Workspace.Elmo.BrickColor = BrickColor.Green() wait(0.1) game.Workspace.Elmo.CanCollide = false end
aaronrtwo
#220999888Monday, July 10, 2017 8:56 PM GMT

are you trying to add the transparency?
RinxfulROBLOX
#221000180Monday, July 10, 2017 9:00 PM GMT

Yea
Odawg566
#221000322Monday, July 10, 2017 9:02 PM GMT

when i first started lua i did that mistake. you should probably do this. 1st script: Elmo = game.Workspace.Elmo while true do Elmo.Transparency = 0 wait(HowMuch) Elmo.Transparency = 0.3 wait(HowMuch) end 2nd script: Elmo = game.Workspace.Elmo while true do game.Workspace.Elmo.CanCollide = true wait(HowMuch) game.Workspace.Elmo.CanCollide = false end 3rd script: Elmo = game.Workspace.Elmo while true do Elmo.BrickColor = BrickColor.new('Bright red') wait(HowMuch) Elmo.BrickColor = BrickColor.new('Bright yellow') wait(HowMuch) Elmo.BrickColor = BrickColor.new('Bright green') end Put 1st script in 1 script, put 2nd script in seperate script, put 3rd script in a serperate script. TADA
RinxfulROBLOX
#221000868Monday, July 10, 2017 9:09 PM GMT

Thanks So Much you helped me,:)
Odawg566
#221003231Monday, July 10, 2017 9:37 PM GMT

np
soutenu
#221003330Monday, July 10, 2017 9:38 PM GMT

or you could use coroutines and do it all in one script, however since you don't understand loops i don't think delving into coroutines would make things any easier for you
Odawg566
#221004174Monday, July 10, 2017 9:48 PM GMT

he is just starting so this is easier for him

    of     1