Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do you position a gui at the left of a screen?

Asked by 3 years ago
Edited 3 years ago

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?

0
Sorry is this related to scripting User#30567 0 — 3y
0
Sorry is this related to scripting User#30567 0 — 3y
0
Yes NathanBlox_Studios 212 — 3y

2 answers

Log in to vote
1
Answered by 3 years ago
Edited 3 years ago

Use this plugin, it will fix it quick ;) https://www.roblox.com/library/2119567183/Personal-GUI-Rescaler

0
I meant to position at the left not scale to devices NathanBlox_Studios 212 — 3y
0
But... This plugin does the same thing! Newh0hrizonCz 58 — 3y
Ad
Log in to vote
0
Answered by 3 years ago

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!

Answer this question