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.
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.