How do I Make the Phone Backpack Larger

So I want to make it where players playing on their phone can access all tools without having to go into their backpack.

I’ve noticed that in Work at a Pizza Place you don’t run out of room on the hotbar.

2 Likes

I think you would have to make your own backpack

2 Likes

That would be correct. Work at a pizza place uses a custom backpack.

The player backpack resizes how many slots it can have by checking if the device has a big or small screen display. Editing how many slots it gives for a phone user would probably be impossible, unless you make your own pseudo coded backpack.

If I were you, I would create a custom GUI for the backpack.
However, not many people use phones like that in 2020 as phones have gotten larger so I think it will be okay on newer models.

3 Likes

Newer phones, despite their increased size, do NOT have more backpack spaces to older phones.
I’m pretty sure it doesn’t scale upon screen size at all, if your use tablet or phone you’ll always have 3 spaces, and PC and Xbox have 10.

4 Likes

Thats incorrect!
Try this:

local player = game.Players.LocalPlayer
local playerGui = player:WaitForChild("PlayerGui")
local quickbar = playerGui:WaitForChild("Quickbar")

if quickbar then
  quickbar.Visible = true
  quickbar.SlotCount = 5
end

1 Like