Im trrying to make this image label ever "wait(10)" i tried but it wont work
Script:
1 | while true do |
3 | wait( 10 ) |
5 | wait( 10 ) |
7 | wait( 10 ) |
8 | repeat |
9 | end |
Your problem is, you're just putting links in a string.
First you have to get the Image property by doing:
1 | script.Parent.Image -- If the script is INSIDE the imagelabel |
(If the script is not inside the ImageLabel you can put it inside it.)
Then, you change the image by doing:
1 | script.Parent.Image = "LinkHere" |
Your script should look like this:
1 | while true do |
2 | script.Parent.Image = "http://www.roblox.com/asset/?id=234007773" |
3 | wait( 10 ) |
4 | script.Parent.Image = "http://www.roblox.com/asset/?id=234007791" |
5 | wait( 10 ) |
6 | script.Parent.Image = "http://www.roblox.com/asset/?id=234007843" |
7 | wait( 10 ) |
8 | end |
Oh and that repeat is useless, since that loops repeats itself by itself.
Hope it helped, and if it did please accept my answer?