Disabling a GUI while opening another?
So I have 2 GUI's, a shop GUI and a XP gui.
The problem is when I'm entering the shopGUI(It's activated by hitting a brick) the XP Gui is blocking the view of the shop.
My question is, what script would be able to disable the "XP GUI" when stepping on the "shopbrick", and when pressing the closebutton on the shop, it would enable the XPGui again?
This is my "OpenShop" script and in the 5th line I tried to add a code, but seems not to work.
1 | script.Parent.Touched:Connect( function (hit) |
2 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
3 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
4 | game.ReplicatedStorage.TriggerCam:FireClient(player) |
5 | game.StarterGui.XPBar.Enabled = false |
And here's my "closebutton" on the ShopGUI, see line 21
01 | script.Parent.MouseButton 1 Click:Connect( function () |
02 | local player = game.Players.LocalPlayer |
03 | local shop = player.PlayerGui.Shop |
04 | local camera = workspace.CurrentCamera |
05 | local item = shop.Item |
06 | local buy = shop.Frame.Buy |
07 | local shadow = buy.Shadow |
09 | if shop.Open.Value = = true then |
10 | shop.Open.Value = false |
11 | shop.Frame:TweenPosition(UDim 2. new( 0 , 0 , 1 , 0 ), "Out" , "Quint" , 1 , true ) |
13 | camera.CameraType = Enum.CameraType.Custom |
14 | camera.CameraSubject = player.Character.Humanoid |
15 | camera.CFrame = player.Character.Head.CFrame |
16 | game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false ) |
17 | buy.Text = workspace.Shop:FindFirstChild( "Part" ..item.Value).ItemPrice.Value |
18 | buy.BackgroundColor 3 = Color 3. fromRGB( 85 , 255 , 127 ) |
19 | buy.BackgroundColor 3 = Color 3. fromRGB( 70 , 212 , 104 ) |
20 | shop.Closed.Value = true |
21 | game.StarterGui.XPBar.Enabled = true |
23 | shop.Closed.Value = false |