On one of the walls of a house I have built in my game there is a TextButton that says "House Information". When you click it, it is supposed to bring up a ScreenGui that gives information about the house. For whatever reason, it is not doing this. Does anyone know why?
1 | script.Parent.MouseButton 1 Click:connect( function () |
2 | game:GetService( "Players" ).LocalPlayer.PlayerGui.CommonHouseInfo.Frame.Visible = true |
3 | end ) |
I think this should work. The screenGUI I put in, change to the name of yours. Insert a local script into the StarterGUI it should say:
1 | game.StarterGUI.TextButton.MouseButton 1 Click:connect( function () |
2 | game.StarterGUI.ScreenGUI.CommonHouseInfo.Frame.Visible = true |
tell me if it's wrong, I'm doing something similar soon.
Bye