Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Script dosent work anymore, anyway to fix it with currnt updates?

Asked by 5 years ago

So this is a script inside a ScreenGui In Starter GUI that has a imageLabel with a Frame inside it, and its no longer working, please help?

ScreenFrame = script.Parent.ImageLabel

while true do 

ScreenFrame.Image = "http://www.roblox.com/asset/?id=159600952"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159600965"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159600992"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601006"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601028"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601046"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601074"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601090"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601112"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601142"
wait(0.01)
end 
0
Use a local script. WideSteal321 773 — 5y
0
Like widesteal said, you need to be using a local script. server scripts will not replicate the images to the client's screen RetroGalacticGamer 331 — 5y

1 answer

Log in to vote
3
Answered by 5 years ago
Edited 5 years ago

Your code:

ScreenFrame = script.Parent.ImageLabel

while true do 

ScreenFrame.Image = "http://www.roblox.com/asset/?id=159600952"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159600965"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159600992"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601006"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601028"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601046"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601074"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601090"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601112"
wait(0.01)
ScreenFrame.Image = "http://www.roblox.com/asset/?id=159601142"
wait(0.01)
end 

How to fix the problem:

I do not see any errors with this code however I see you are using a normal script please use a local script here.

Accept and upvote if this helps!

0
upvoted your answer becuz I agree RetroGalacticGamer 331 — 5y
0
tried it out and worked, Thanks a bunch! Adenandpuppy 87 — 5y
0
take the upvote Wicked_Wlzard 110 — 5y
Ad

Answer this question