I am making a game and it is hard bc this script is not working i am trying to make a gui pop up when you CLICK a part thats in workspace i tried this but it is not working can someone help me please
1 | Quest 1 = game.StarterGui.QuestLogs.Quest 1 |
2 | script.Parent.MouseClick:Connect( function () |
3 | Quest.Frame.Visible = true |
4 | end ) |
But its not working!! how do i make it work!!
You made it Quest instead of Quest1?
1 | Quest 1 = game.StarterGui.QuestLogs.Quest 1 |
2 | script.Parent.MouseClick:Connect( function () |
3 | Quest 1. Frame.Visible = true |
4 | end ) |