local Image = script.Parent
while true do
Image.Image = "http://www.roblox.com/asset/?id=4504065102"
wait(1)
Image.Image = "http://www.roblox.com/asset/?id=4504066589"
end
The image isn’t changing, idk what im doing wrong
local Image = script.Parent
while true do
Image.Image = "http://www.roblox.com/asset/?id=4504065102"
wait(1)
Image.Image = "http://www.roblox.com/asset/?id=4504066589"
end
The image isn’t changing, idk what im doing wrong
Let me explain what your code is doing right now:
As you can see, there is no delay between some of the image sets, causing it to look as if it’s not changing.
For this reason, you just need to add a wait(1)
at the end of your script:
o lol didn’t notice that thx bro
you have to write like this: while true do Image.Image = "ID" wait(1) Image.Image = "ID" wait(1)
you can also make a “local TimeWait = Number” and put that inside the wait() and do the same things with the images id.