Hello everyone,
I seem to have an Issue with my script that applies settings locally.
Whenever a button is clicked it should apply the settings however it is not changing or printing anything. It seems like the MouseButton1Click event is not firing as whenever I click the button it should Run a local function and then print as seen below
_MusicTabButton.MouseButton1Click:Connect(function()
_OpenMusicTab()
print("Opening Music Tab from Button")
end)
But as you can see after clicking buttons, it doesn’t print:
prints saying “Loaded” being from this part of the script:

There is no further errors or warnings that occur, there’s no type errors within the script whenever I use --!strict and the script is located in StarterPlayerScripts
I have tried using
_MusicTabButton.MouseButton1Click:Connect(function()
_OpenMusicTab()
print("Opening Music Tab from Button")
end)
Instead of:
_MusicTabButton.MouseButton1Click:Connect(_OpenMusicTab)
I have also tried moving the script into another folder such as StarterGui
Any help will be greatly appreciated

