I want to make a train destination board that changes by pressing a button, but don't know how to do it!
Just make it change decal id number every how many seconds you want.
function click() while true do Decal1.Texture.Decal.Texture=""--Copy this line and the one below it for more pictures wait(5) script.Parent.Decal.Texture = "http://www.roblox.com/asset/?id=76907393"--Edit for your textures asset Id. wait(5) script.Parent.Decal.Texture = "http://www.roblox.com/asset/?id=76907352" end end script.Parent.ClickDetector.MouseClick:connect(click)
There is an easier way to do this using Global tables but I didn't have the time to write because I have exams I need to study for.
Do you see the properties called texture? They show which decal you are using by id that is where you can change it.