For my FPS game I want to make it so the GUI is hidden but not removed. Is there anyway I can change the position of the Backpack?
To hide any GUI object, set it's Visible
property to false. To make it reappear, set Visible
to true.
Click on the GUI You wish to make invisible, View the properties and find the one that says Visible
Which should be above the 'Behaviour' part of the properties. Deselect Visible
and it will be gone
EDIT: Well I only know how to remove the backpack, But im not entirely sure if you can move it. I always thought it was either there or gone.. This is the code you'd use to remove it anyhow...
game.StarterGui:SetCoreGuiEnabled("Backpack",false)
Backpack is a CoreGUI
aswell as Leaderboard and chat. You can remove any of them using the script above and just changing one of the 3 things you want gone