I am using @TheFurryFish’s HandToGui system. For mobile players the UI is blocking the chat. I what to make the UI small how would I do it?
HandtoGui: https://web.roblox.com/library/276062171/Hand-To-System
Module: https://web.roblox.com/library/276055841/HandToModule
Late response, but if anyone may use this asset and run into this problem: I seemed to have fixed it by changing the end part of the HandTo System
script:
require(276055841)(Settings)
to:
require(...)(Settings)
^ “…” is the location of this ModuleScript that you may have inserted into your game; for example, script.MainModule
or game.ReplicatedStorage.Modules.MainModule
.
Within the ModuleScript, locate the descendant named “GiveGui” and edit the property values according to the GUI object you want edited.