UIS changing ui visible doesn't work

There are no errors, nothing. I started learning UIS a few days ago. The prints are working fine, there are no errors, not even wrong timing with prints.

But for some reason, my frame won’t show up, even though the properties says it’s visible.
Can anybody help me?

Here’s the code I’m running in StarterPlayer > StarterPlayerScripts

local UserInputService = game:GetService("UserInputService")
local StarterGui = game:GetService("StarterGui")
local CBInv = StarterGui.CBInventory
local CBInvMAIN = CBInv.Main

local sound = CBInv.sfx
local debounce = false

UserInputService.InputBegan:Connect(function(input, gameProcessedEvent)
	if input.KeyCode == Enum.KeyCode.V then
		if not debounce then
			debounce = true
			sound:Play()
			CBInvMAIN.Visible = true
			print("part 1 passed")
			
			
			task.wait(5)

			debounce = false
			sound:Play()
			CBInvMAIN.Visible = false
			print("part 2 passed")
		end
	end
end)

Also, the script is pretty basic, since I’m a beginner with Lua scripting.

The Frame inside has folders inside for organizing labels and headers. I tried with no folders, but it’s the same.

Could you show an image of the GUI and the Explorer with all the Children of the ScreenGUI?
Would be really helpful if that’s possible.

Here:


The math folder is for organizing sizes and parallel buttons

Check if all statements are correct:

  • CBInventory is Enabled
  • Main is in the frame of player’s view. You can check that if the position of the main is over 1 or under 0
  • Verify the GUI is working by making it visible threw Studio before playing the game.

If possible provide an image of the Properties of Main.

first statement: Yes It’s enabled.

second statement: When I’m in the studio, making the main visible is working, it is visible and it’s in the middle of the screen.

third statement: second statement

Here’s the properties screenshot:


Do I have to screenshot below behavior tab or is it enough?

Check all of that in-game as it would help you find the problem. However check it not from startergui and do it from Player.Playergui. you will find the screen GUI there.

1 Like

Ah, you’re right. I found it in my username.PlayerGui, I have pressed V and it hasn’t changed at all, I will see right now what I can do. Thank you.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.