Any way to move CoreGui Buttons?

Just a simple ask today. I am just wondering if there is any way to move the CoreGui Jump button to a better place.

In most fps games the shoot action is more important than Jumping.
image
I have looked at devforum and devhub and found nothing.

https://developer.roblox.com/en-us/api-reference/function/ContextActionService/SetPosition

1 Like

Take that if you’d like to remove it! I am unsure you can move CoreGui’s, however most likely not, since you can’t move something like the chat UI.

Well i’m sure at 99% that the jump button is a ContextActionService button because after deleting all core gui objects it was still there. You just need to find the name of that action

The JumpButton is not CoreGUI, on mobile a new ScreenGui is added to PlayerGui that contains this button. However I recommend using UserInputService.ModalEnabled and creating your own buttons.

Actually the ChatUI you can move since it Parented to the PlayerGui :slight_smile:
Although other things such as the Esc Menu you physically can’t move that button.

Thanks for all your help. @NinjaFurfante07 Yes you were right it is a ContextAction. I was able unbind the action. However I think it isn’t exactly the same. I can’t edit it. It turns out that there is a new ScreenGui in the player called “TouchGui”

Managed to find it in this article. It explains how you can access the buttons and move them around too.

Thanks for all your help.

1 Like