Here is a menu for an airline, however, the images are not loading. The images loaded fine in Baseplate, but not in a public group game. Is there a way to get the images to load? Here is the script for the menu GUI tool.
local tool = script.Parent
local gui
local function readBook()
local player = game.Players:getPlayerFromCharacter(tool.Parent)
if player.PlayerGui:findFirstChild("Menu") == nil then
gui = tool.Menu:Clone()
gui.Parent = player.PlayerGui
end
end
local function closeBook()
wait()
if gui then gui:Destroy() end
end
tool.Equipped:connect(readBook)
tool.Unequipped:connect(closeBook)
(Image not loaded when in public group game)
(Image loaded fine when in Studios)