Frame = game.StarterGui.ScreenGui.WarlandsGameInfo function onClick() Frame.Visible = true end script.Parent.MouseButton1Click:connect(onClick)
WHen I click the button, nothing happens.
Because you have to get all the players, it doesnt update, try this
Frame = ScreenGui.WarlandsGameInfo function onClick() for k, p in pairs(game.Players:GetPlayers()) do p.PlayerGui.Frame.Visible=true end script.Parent.MouseButton1Click:connect(onClick)