I don't know will this question gets taken down, because I don't know has this already been asked or not. I'm new to this, so please don't go too hard with me.
you can find all of the settings inside of
1 | game.Players.LocalPlayer.PlayerGui.TouchGui |
1 | local plr = game.Players.LocalPlayer |
2 | local touchgui = plr.PlayerGui:WaitForChild( "TouchGui" ) |
3 | local movegui = touchgui.TouchControlFrame.ThumbstickFrame |
4 | local jumpgui = touchgui.TouchControlFrame.JumpButton |
5 |
6 | movegui.Position = UDim 2. new(. 5 , 0 ) --put the position you want the thumbpad to be |
7 | jumpgui.Position = UDim 2. new( 0.5 , 0 ) --put the position you want the jumpbutton to be |
8 | --MAKE SURE TO PUT THIS "LOCALSCRIPT" IN STARTERPACK! |
9 | --remember, .5 is half of the screen. |
You're welcome!