Basically, my GUI is on the right of the screen. If I place it there, It prevents mobile users from walking, all the buttons are attached to one button using a script. Is there a way to use a script to place the root button on the left?
Use this plugin, it will fix it quick ;) https://www.roblox.com/library/2119567183/Personal-GUI-Rescaler
Well, it's easy. Move the TextButton to the left and just copy the position of it and place it where it was.
Here's an example, when the Textbutton changes to a position when it is clicked.
local TextButton = script.Parent TextButton.MouseButton1Click:Connect(function() TextButton.Position = UDim2.new(1,0,1,0) end)
Lemme know if it helps!