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

Disabling a GUI while opening another?

Asked by 6 years ago

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.

1script.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
6    end
7end)

And here's my "closebutton" on the ShopGUI, see line 21

01script.Parent.MouseButton1Click: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
08 
09    if shop.Open.Value == true then
10        shop.Open.Value = false
11        shop.Frame:TweenPosition(UDim2.new(0,0,1,0),"Out","Quint",1,true)
12        item.Value = 1
13        camera.CameraType  = Enum.CameraType.Custom
14        camera.CameraSubject = player.Character.Humanoid
15        camera.CFrame = player.Character.Head.CFrame
View all 25 lines...
0
Replace game.StarterGui with player.PlayerGui. The ZIndex property could be useful in this situation. ProtectoidZ 42 — 6y
0
Try using RemoteEvent to enable Gui visibilty thesit123 509 — 6y

Answer this question