I have this script that opens a ScreenGui when the detector is touched. It works perfectly the first two times, but the thing is that after two times of opening and closing it doesn't work anymore. Here is my script
Players = game:GetService("Players") LocalPlayer = Players.LocalPlayer PlayerGui = LocalPlayer.PlayerGui Detector = game.Workspace.RoomDetector1 RS = game:GetService("ReplicatedStorage") ShopOpen = false Detector.Touched:Connect(function(touch) if ShopOpen == false and touch.Parent.Name==LocalPlayer.Name then RS.Rooms:Clone().Parent = PlayerGui ShopOpen=true end end) game.Players.LocalPlayer.PlayerGui:WaitForChild("Rooms").Frame.Close.MouseButton1Click:Connect(function() ShopOpen = false print ("Test") end)
I also noticed that it only prints test once. This is really weird. Help is appreciated.