Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Script WON'T transition through GUI. Why? [One Answer, No help]

Asked by 9 years ago

I am making a 'movie' gui thing for my place, but the GUI doesn't transition through the Decals. Also yeah, I know I have used probably the least efficient way of doing the script anyways. Annoying because this same script with a bit of tweaking WILL work on Decals placed on Parts...

movie = script.Parent

while true do
wait(5)
movie.q.Visible = true
movie.w.Visible = false
movie.e.Visible = false
movie.r.Visible = false
movie.t.Visible = false
movie.y.Visible = false
movie.u.Visible = false
movie.i.Visible = false

wait(5)
movie.q.Visible = false
movie.w.Visible = true

wait(5)
movie.w.Visible = false
movie.e.Visible = true

wait(2)
movie.e.Visible = false
movie.r.Visible = true

wait(3)
movie.r.Visible = false
movie.t.Visible = true

wait(2.5)
movie.t.Visible = false
movie.y.Visible = true

wait(2)
movie.y.Visible = false
movie.u.Visible = true

wait(1)
movie.u.Visible = false
movie.i.Visible = true
end

1 answer

Log in to vote
0
Answered by
Shawnyg 4330 Trusted Badge of Merit Snack Break Moderation Voter Community Moderator
9 years ago

If the Images are in a GUI, they are most likely ImageLabels. You would use ImageTransparency.

0
So why not make them Visible then Invisible at a timed interval? Michael007800 144 — 9y
0
You can do that, I'm just saying that you have the property wrong. You said it was in a GUI, so the correct property is ImageTransparency. Shawnyg 4330 — 9y
0
Changed it all to ImageTransparency, changing from = 1 to = 0 at each interval, no noticed change... Michael007800 144 — 9y
Ad

Answer this question