My GUI isn't showing up?

So, currently I decided to work on my older systems, and for some reason that wouldn’t show up that GUI where the Enabled isn’t working.

The issue is that the script is so simple.

local GUIS = script.Parent.Parent
local GUI = game:GetService("StarterGui")
local YINGYANG = script.Parent
local MoveCre = GUI.MoveCre


YINGYANG.MouseButton1Down:Connect(function()
	MoveCre.Enabled = not MoveCre.Enabled
	print("ARGH")
end)

is the frame visible? character limit

All the frames are visible. So, I don’t really know the issue as to why.

You’re modifying the gui that is stored in StarterGui, not the player’s actual gui.

Change

local GUI = game:GetService("StarterGui")

to

local GUI = game:GetService("Players").LocalPlayer.PlayerGui

playergui

local GUIS = script.Parent.Parent
local plr = game:GetService("Players").LocalPlayer
local PlayerGui = plr:WaitForChild("PlayerGui")
local YINGYANG = script.Parent
local MoveCre = PlayerGui.MoveCre


YINGYANG.MouseButton1Down:Connect(function()
	MoveCre.Enabled = not MoveCre.Enabled
	print("ARGH")
end)

oops i was a little late lol forgot to press reply