#gui not becioming visible for some reason
10 messages · Page 1 of 1 (latest)
what does it look like in the explorer
Your folder variable should designate to the local player's PlayerGui
Is the code working fine? If it's not then it's probably because you have StreamingEnabled activated on your Workspace's proprieties (which SHOULD be on btw).
Try to put WaitForChild in some of the variables just in case if the Output says something like "not a valid member" or "attempt to index nil" something like that
Either way if it's not that and the code is working properly but there's no errors then it's probably because you are attempting to do it with StarterGui and PlayerGui.
The difference of them is that StarterGui is usually the UI edited before you play the game and when you play it, those UIs are sent to PlayerGui (where the UIs are running in real time while playing the game)
Try to replace the local folder in the start with this and see if it works:
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local PlayerGui = player.PlayerGui
local folder = game.PlayerGui:WaitForChild("Objective").Frame.objectives
Sry I was sleeping
Oh I see
See I was thinking that that might be a thing but I didn’t know how to put it in a variable or anything like that