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

How do I change a SurfaceGUI Size & the location its facing using script?

Asked by 3 years ago

using instance.new on a surface guiā€¦ How do I Change its facing location & how do I set its size to be the same as the block?

sorry I'm new to Lua

1 answer

Log in to vote
0
Answered by
ads_bv 29
3 years ago

you dont have to use a script. you can go to the surfacegui then scroll a bit and look for something that says "size". or if you need it with scripting then here is an example: ~~~~~~~~~~~~~~~~~ local gui = instance.new("Surface Gui") gui.Size=Vector2.new(1,1) --change the numbers to how big or small you want it to be gui.Face=Left --change the "Left" to something of where you want the gui to be ~~~~~~~~~~~~~~~~~

Ad

Answer this question