I have a script which is supposed to make a frame visible when clicked by the player, and im sure that the clickdetector script worked cuz it managed to Print text on click, but i cant get it to make that darn frame visible
script:
local ClickDetector = script.Parent
local ShipGUI = game.StarterGui.ScreenGui.ChooseSHip
ClickDetector.MouseClick:Connect(function(player)
ShipGUI.Visible = true
end)