Moving The Menu Button

I want to move the roblox menu button to the right, as I want to have game ui in the top left. I’m pretty sure it’s impossible, since no other game I’ve seen has the menu button out of place, but figured it might be worth asking here. Basically this is what I want:

This code works if used in the command bar, but not in a regular script:

game.CoreGui.TopBar.TopBarFrame.LeftFrame.MenuIcon.Parent = game.CoreGui.TopBar.TopBarFrame.RightFrame

I’ve looked through “SetCore” documentation, but there was nothing on the menu button.

1 Like

The console can access CoreGui due to it being a higher level than a regular Script, a LocalScript, or a ModuleScript. There’s no possible way to move the icon, since it’s apart of the CoreGui. Trying to move it with any type of script that’s not in the command bar would land you with a permission error. Sorry!
image

3 Likes

It’s not possible to tamper with the CoreGui outside of Studio, SetCore and SetCoreGuiEnabled. You are not able to move it with code.

6 Likes