Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why do I get an error when doing MouseButton1Click event?

Asked by 4 years ago
1local Space = game.StarterGui.ScreenGui.Space
2local SecondFrame = game.StarterGui.ScreenGui.SecondFrame
3 
4MouseButton1Click:Connect(function()
5    Space.Visible = false
6    SecondFrame.Visible = true
7end

Error: Players.DevSeveral.PlayerGui.ScreenGui.TextButton.LocalScript:7: Expected ')' (to close '(' at line 4), got <eof> Layout:https://i.gyazo.com/bfe052345f8d803d98ac68945fc18fcc.png

I am trying to make it when someone clicks that button the Frame becomes not visible and another one becomes visible

The frame I want to be not invisible is 'Space' and the one I want to be visible is 'SecondFrame'

1 answer

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

Please provide explanation with your answers. Simply posting code does not spread knowledge of integral scripting processes which helps people understand the logic and reasoning behind your answer.

Try this:

1local Space = script.Parent.Parent.Space
2local SecondFrame = script.Parent.Parent.SecondFrame
3 
4function onClick()
5    Space.Visible = false
6    SecondFrame.Visible = true
7end
8 
9script.Parent.MouseButton1Click:connect(onClick)

Or if you want to make it so that when you click it shows, and when you click again it disappears

01local Space = script.Parent.Parent.Space
02local SecondFrame = script.Parent.Parent.SecondFrame
03 
04function onClick()
05    if Space.Visible == false then
06        Space.Visible = true
07    elseif  Space.Visible == true then
08        Space.Visible = false
09    end
10 
11    if SecondFrame.Visible == false then
12        SecondFrame.Visible = true
13    elseif  SecondFrame.Visible == true then
14        SecondFrame.Visible = false
15    end
16end
17 
18script.Parent.MouseButton1Click:connect(onClick)
0
Hope it works! VikkiVuk 74 — 4y
0
for the first script I got this, 14:22:16.804 - Players.DevSeveral.PlayerGui.ScreenGui.TextButton.LocalScript:9: attempt to index nil with 'MouseButton1Click' DevSeveral 19 — 4y
0
wait sorry my bad, ill edit the answer VikkiVuk 74 — 4y
0
Try now with the updated answer VikkiVuk 74 — 4y
View all comments (4 more)
0
First one does not work and I get no error DevSeveral 19 — 4y
0
Try now, also did you try the second script i gave you? VikkiVuk 74 — 4y
0
Hey! The first script worked but second did not but that's fine! Tysm!' DevSeveral 19 — 4y
0
Try the second script now again. VikkiVuk 74 — 4y
Ad

Answer this question