Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Tool action bar removal?

Asked by 8 years ago

When a player in roblox has tools in their starter pack when you click play they show up in an action bar at the bottom of the screen, is there any way to remove this action bar bit still keep the tools?

0
Do you mean the backpack? If so you can just do WITH A LOCAL SCRIPT in StarterGui: game:GetService'StarterGui'.SetCoreGuiEnabled(Enum.CoreGuiType.BackPack, false) Vingam_Securis 213 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

In a LocalScript in StarterGui use this code:

local startergui = game:GetService("StarterGui")
startergui:SetCoreGuiEnabled(Enum.CoreGuiType.BackPack, false)

I think this is what you want.

Ad

Answer this question