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

How do I make a billboard GUI's image label change?

Asked by 10 years ago

I need a script that can change the ImageLabel of the billboard GUI. So what I mean is, I want the first image to stay for 4 seconds, then the next image comes on for 1 second, and repeat. Anyone know a script?

1 answer

Log in to vote
0
Answered by
Dominical 215 Moderation Voter
10 years ago

Put this script inside the ImageLabel:

FirstImage = "http://www.roblox.com/asset?id=" -- Put ID here
SecondImage = "http://www.roblox.com/asset?id=" -- Put ID here



while true do
script.Parent.Image = FirstImage

wait(4)

script.Parent.Image = SecondImage

wait(1)
end
0
Thanks MysticalWarrior 0 — 10y
Ad

Answer this question