diff --git a/CSMPFunctions.lua b/CSMPFunctions.lua index ccb5f22..bd5434f 100644 --- a/CSMPFunctions.lua +++ b/CSMPFunctions.lua @@ -675,13 +675,13 @@ function CSConnect(UserID,ServerIP,ServerPort,PlayerName,Hat1ID,Hat2ID,Hat3ID,He UserSettings().GameSettings.ControlMode.Changed:connect(function() if UserSettings().GameSettings.ControlMode == Enum.ControlMode["MouseShiftLock"] then - if game.CoreGui.RobloxGui.MouseLockLabel.Visible == false then - game.CoreGui.RobloxGui.MouseLockLabel.Visible = true + if game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible == false then + game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible = true end end if UserSettings().GameSettings.ControlMode == Enum.ControlMode["Classic"] then - if game.CoreGui.RobloxGui.MouseLockLabel.Visible == true then - game.CoreGui.RobloxGui.MouseLockLabel.Visible = false + if game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible == true then + game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible = false end end end) @@ -820,13 +820,13 @@ function CSSolo(UserID,PlayerName,Hat1ID,Hat2ID,Hat3ID,HeadColorID,TorsoColorID, UserSettings().GameSettings.ControlMode.Changed:connect(function() if UserSettings().GameSettings.ControlMode == Enum.ControlMode["MouseShiftLock"] then - if game.CoreGui.RobloxGui.MouseLockLabel.Visible == false then - game.CoreGui.RobloxGui.MouseLockLabel.Visible = true + if game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible == false then + game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible = true end end if UserSettings().GameSettings.ControlMode == Enum.ControlMode["Classic"] then - if game.CoreGui.RobloxGui.MouseLockLabel.Visible == true then - game.CoreGui.RobloxGui.MouseLockLabel.Visible = false + if game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible == true then + game.CoreGui.RobloxGui.ControlFrame.BottomLeftControl.MouseLockLabel.Visible = false end end end) diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs index 81d2fce..646bead 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/MainForm.cs @@ -530,7 +530,10 @@ namespace RBXLegacyLauncher void Button19Click(object sender, EventArgs e) { - DialogResult result = MessageBox.Show("Note: If the health bar or scoreboard don't appear, just reset your character. If your character does not move or your character lags after the client window is loaded, just open the server window then minimize it.","RBXLegacy Launcher - Play Solo", MessageBoxButtons.OK, MessageBoxIcon.Information); + if (GlobalVars.SelectedClientVersion >= 7) + { + DialogResult result = MessageBox.Show("Note: If the health bar or scoreboard don't appear, just reset your character.","RBXLegacy Launcher - Play Solo", MessageBoxButtons.OK, MessageBoxIcon.Information); + } WriteConfigValues(); StartSolo(); diff --git a/RBXLegacyLauncher/RBXLegacyLauncher/ServerInfo.Designer.cs b/RBXLegacyLauncher/RBXLegacyLauncher/ServerInfo.Designer.cs index 8a923d9..6bad3fb 100644 --- a/RBXLegacyLauncher/RBXLegacyLauncher/ServerInfo.Designer.cs +++ b/RBXLegacyLauncher/RBXLegacyLauncher/ServerInfo.Designer.cs @@ -1,7 +1,7 @@ namespace RBXLegacyLauncher { partial class ServerInfo - {> + { private System.ComponentModel.IContainer components = null; /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing)