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

Why doesn't the screengui enable!? [closed]

Asked by
bnxDJ 57
5 years ago

This question already has an answer here:

Why doesn't player GUI enable when game is published?

I have been trying to fix this problem all day now!

I tried disabling filtering and it didn't work! I tried changing the player joined script and it didn't work as well!

This is the script

game.Players.PlayerAdded:Connect(function(player)
    player.CharacterAdded:Connect(function()
local gui = player:WaitForChild('PlayerGui',1)
 local open = gui:WaitForChild("open",1)
open.Enabled = true
        end
    end)
end)

no matter what I try nothing works.

What I am trying to do: I am trying to make a script that enabled the "open" gui when the player joins.

Marked as Duplicate by User#19524

This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.

Why was this question closed?