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

All of my images are being deleted by the server!! What can i do to fix it?

Asked by 6 years ago
Edited 6 years ago

So when i load up my game and i play it (in studio) all the images are just white screens and the out put was saying that the images failed to load!

This happened every time I played it in studio, when i wasn't playing it, but in studio it appeared as i wanted it.

I know that my pictures are appropriate. Links:

Image 1 Image 2 Image 3

I think I know what I should do (I didn't do it yet, I'm just asking if I should do this):

This script is in a LocalScript and it's parent is ReplicatedFirst

local player = game.Players.LocalPlayer
local gui = player.PlayerGui
local LoadingGui = gui.LoadingGui

if LoadingGui.BG.IsLoaded == true then
    print("Intro Background Loaded.")
end
if LoadingGui.BG.Logo.IsLoaded == true then
    print("Evolution Logo Loaded.")
end
if gui.CoreGui.CreateNewPlanet.IsLoaded == true then
    print("Planet Logo Loaded.")
end
if gui.CoreGui.CreateNewPlanet.ImageText.IsLoaded == true then
    print("Create New Planet Text Loaded.")
end

How else should i fix this issue?

PLEASE WRITE YOUR ANSWER IN AN ANSWER FORM PLEASE

0
try replacing `local gui = player.PlayerGui` with `local gui = player:WaitForChild('PlayerGui')` creeperhunter76 554 — 6y
0
Use ContentProvider. hiimgoodpack 2009 — 6y

Answer this question