sooo im tryna make an animated imagelabel for a loading screen…
the animation doesnt seem to be working
this is the script inside the screengui (renamed Intro)
--
local Intro = script.Parent.Frame
local image = Intro.ImageLabel
local TweenSerive = game:GetService("TweenService")
game.ReplicatedFirst:RemoveDefaultLoadingScreen()
Intro.Visible = true
image.Image = "rbxassetid://7747995041"
wait(0.12)
image.Image = "rbxassetid://7747996183"
wait(0.12)
image.Image = "rbxassetid://7747997106"
wait(0.12)
----------------------------------------
(i cut out some repeating lines just of extra pics to make it shorter)
it just shows the default image & stands still
when i make a similiar script on a surface gui, or even just a decal, its perfectly fine
ive tried using both localscript & just regular script… niether work
anyway heres some pics & vid
heres it working on the surface gui, but not screen
i tried following along to this tutorial How To Make A Animated Image Label Intro To Your Game Roblox Studio Tutorial 7 - YouTube is it just outdated ? or did i make a mistake?