So I want to make a gui that if you click a button and the gui is showing the gui will hide or when the gui is hidden and if the person clicks the button it'll show but this script is not working .
Script
1 | script.Parnet.MouseButton 1 Click:Connect( function () |
2 | script.Parent.Parent:WaitForChild( "InventoryFrame" ).Visible = not script.Parent.Parent:WaitForChild( "InventoryFrame" ).Visible |
3 | end ) |
The error is
Parnet is not a valid member of LocalScript
This code is an edit of Player1_Joined's code!
Basically, if you want it to do the opposite then use a not
function.
1 | script.Parent.MouseButton 1 Click:Connect( function () --Make sure to check the spelling of your code, you spelled "Parent" "Parnet" |
2 | script.Parent.Parent:WaitForChild( "InventoryFrame" ).Visible = not script.Parent.Parent:WaitForChild( "InventoryFrame" ).Visible --You put not instead of false |
3 | --script.Parent.Parent:WaitForChild("InventoryFrame").Visible I commented this out cause I wasn't sure what you wanted to do with this part |
4 | end ) |
Re-edited on 2/Feb/2021 - Fixed grammatical errors
1 | script.Parent.MouseButton 1 Click:Connect( function () --Make sure to check the spelling of your code, you spelled "Parent" "Parnet" |
2 | script.Parent.Parent:WaitForChild( "InventoryFrame" ).Visible = false --You put not instead of false |
3 | --script.Parent.Parent:WaitForChild("InventoryFrame").Visible I commented this out cause I wasn't sure what you wanted to do with this part |
4 | end ) |
This should probably work, remember to check your code spelling (not trying to be rude).
I've had the exact same problem, The reason is because you need to make it visible in the players gui This is my script where if you touch the block the gui pops up Local script
01 | script.Parent.Touched:Connect( function (hit) |
02 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
03 | local plr = game.Players:GetPlayerFromCharacter(hit.Parent) |
04 | if plr then |
05 | if not plr.PlayerGui:FindFirstChild( "GUIClonedfromtouchblock" ) then |
06 | local clonedgui = script.Parent:FindFirstChildOfClass( "ScreenGui" ):Clone() |
07 | clonedgui.Name = "GUIClonedfromtouchblock" |
08 | clonedgui.Parent = plr.PlayerGui |
09 | wait( 0 ) |
10 | script.Parent.TouchEnded:Connect( function (hit 2 ) |
11 | if hit = = hit 2 then |
12 | game.Debris:AddItem(clonedgui, 0 ) |
13 | end |
14 | end ) |
15 | end |
16 | end |
17 | end |
18 | end ) |
or do this it might not work Use Server/normal script
1 | local player = game.Players.LocalPlayer |
2 | script.Parnet.MouseButton 1 Click:Connect( function () |
3 | script.Parent.Parent:WaitForChild( "InventoryFrame" ).Visible = true |
4 | player.PlayerGui:WaitForChild( "InventoryFrame" ).Visible = true |
5 |
6 | end ) |