What’s the best position to place a GUI so nobody can see it? I have a GUI that when u press a button it moves the onto your screen but I have it in a position but some users are still able to see the bottom of the GUI at the top of their screen.
The easiest way to do this is to move the Gui using the scale property of the UDim2 | Roblox Creator Documentation. The scale positions/sizes a gui by the percentage of the parent’s position/size. You can set the parent’s position to UDim2.new(scaleX, 0, scaleY, 0). In this case, if the anchor position is 0,0 then you can just have the offscreen position as UDim2.new(0,0,1,0).
1 Like
