Every time i click the play button on my menu its supposed to Make the gui visible but it wont?
local btn = script.Parent -- we get the button local remote = game:GetService("ReplicatedStorage"):WaitForChild("Menu") -- we get the remote event local camera = workspace.CurrentCamera -- we get the camera local character = workspace:WaitForChild(game.Players.LocalPlayer.Name) -- we get the player's character btn.MouseButton1Click:Connect(function() -- we do stuff under it once the button was pressed script.Parent.Parent.Visible = false -- we will make the frame invisible remote:FireServer("Menu") -- we will fireserver the remote event if game.Players.LocalPlayer:WaitForChild("Data").HasGame.Value == true then -- if the player has existing data and only needs to be teleported to the island then... -- we will turn the camera back to normal camera.CameraType = "Custom" -- we set the camera type to custom camera.CameraSubject = character.Humanoid -- we set the camera subject to the character's humanoid camera.CFrame = character.Head.CFrame -- we set the camera's cframe to the character's head's cframe script.Parent.Parent.Parent.Parent.Guis.Bars.Visible = true -- we make the bars frame in the gui go visible script.Parent.Parent.Parent.Parent.Guis.menuBtn.Visible = true -- we make the menu button in the gui go visible script.Parent.Parent.Parent.Parent.Guis.saveBtn.Visible = true -- we make the save button in the gui go visible script.Parent.Parent.Parent.Parent.Guis.beli.Visible = true -- we make the beli text in the gui go visible end end)