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

How do you position preset mobile buttons like the move button and the jump button?

Asked by 7 years ago

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.

1 answer

Log in to vote
0
Answered by
wookey12 174
7 years ago
Edited 7 years ago

you can find all of the settings inside of

1game.Players.LocalPlayer.PlayerGui.TouchGui
1local plr = game.Players.LocalPlayer
2local touchgui = plr.PlayerGui:WaitForChild("TouchGui")
3local movegui = touchgui.TouchControlFrame.ThumbstickFrame
4local jumpgui = touchgui.TouchControlFrame.JumpButton
5 
6movegui.Position = UDim2.new(.5,0) --put the position you want the thumbpad to be
7jumpgui.Position = UDim2.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!

Ad

Answer this question