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?
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