I am making a fps game and i want to remove the backpack but still be able to press 1/2/3/4/5/6/7/8/9/0 to get the tools. is there a way i can make the backpack transparent?
I suggest creating your own backpack Gui for what you said you wanted.
This will remove the normal Backpack.
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack,false)
There are many tutorials on places such as youtube on how to create your own backpack Gui such as this one here.
This works for me:
1. Create a ScreenGui in StarterGui
2. Put a LocalScript in this ScreenGui
3. Type:
game:GetService('StarterGui'):SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)