GUI wont show in game

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear! I want to get my GUI to show in game

  2. What is the issue? Include screenshots / videos if possible!
    Ingame:

Studio:
https://streamable.com/qbb2wy sorry for the stretch streamlabs doesn’t like me

  1. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    The Devforums, Youtube, Scripting Helpers, Reddit. I can’t seem to find anything that helps

After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!

I have a local script inside of the screenGUI to set its parent to the playerGUI but thats doesn’t help either

local playerGui = game.Players.LocalPlayer.PlayerGui
local GUI = playerGui:WaitForChild('TeamSelectGUI')

Thank you for reading and taking the time to answer.

Signed,
X

Do you have a photo of the explorer? In the streamable video you posted, it looks like it’s working fine to me.
Also, if a ScreenGui is inside StarterGui, then you don’t have to clone it to the player, it’s already done so by ROBLOX.

As well as, in the photo of your developer console, you’re looking at the server logs, for a client (GUI) error.

1 Like

We need some more details about the problem. I’m not really understanding what’s the deal here? Also send a copy of your full script if possible, or at least the most important parts.

@triixys triixys https://gyazo.com/b3a595c9e78abfa6b3887b39741846d2

that is the full script, for the playerGUI

Are you using TweenService by any chance?

That can’t be the only script you made, as the GUI is being changed from visible to invisible, so please send the script that you wrote for making the GUI disappear and appear.

1 Like

Is this a server script or a local script? .LocalPlayer won’t work in server scripts. If this is a local script, can you please show us the client outputs instead of the server?

@v7zr no I am not using tween service

@DEVLocalPlayer Oh ok I understand what you mean now



local mouse = plr:GetMouse()


script.Parent.MouseButton1Down:Connect(function()
	script.Parent.Parent.Visible = false
	script.Parent.Parent.Parent.ShopButton.Visible = false
	script.Parent.Parent.Parent.CreditsButton.Visible = false
	script.Parent.Parent.Parent.Frame1.Visible = true
	script.Parent.Parent.Parent.Frame.Visible = true
    script.Parent.Parent.Parent.ReturnToMainMenuButton.Visible = true
	
	
end)

@ImTheBuildGuy yes I am using a local script

Sorry for the late replies school is really taking up most of my time

also

https://gyazo.com/da41d28205405f26ab9b7a27f4cc0306