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.
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.
I think you would have to make your own backpack
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.
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.
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