#Roblox tool hotbar overlapping with custom tool hotbar

1 messages · Page 1 of 1 (latest)

thorny veldt
#

How can I fix this? I've tried putting in a localscript, but it seems to not work. I want to remove the original roblox tool hotbar but I am unsure why its not working out for me. Please help out

#

For reference this is what I tried to put in two different Local Scripts that i tried:

#

local player = game.Players.LocalPlayer
local playerGui = player:WaitForChild("PlayerGui")
local mainMenu = playerGui:WaitForChild("TitleScreenGui").TitleScreen
local StarterGui = game:GetService("StarterGui")
local PlayButton = StarterGui.TitleScreenGui:WaitForChild("TitleScreen"):WaitForChild("Play")
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)

script.Parent.MouseButton1Click:Connect(function()
mainMenu.Visible = false
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
end)

#

And the other is just this:

#

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

spare elbow
#

When you click scripts parent that is a button i suppose it turns on the coregui fot backpack

thorny veldt
versed prism
#

@thorny veldt

#

local StarterGui = game:GetService("StarterGui")

StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)