How to remove roblox bar

Hello, I would like to know how I can remove the bar that is marked in the image with the arrow, does anyone know?

Use StarterGui:SetCore("TopbarEnabled", false)

2 Likes

You can use a local script in startercharacterscripts
game:GetService(ā€˜Playersā€™).LocalPlayer:WaitForChild(ā€˜PlayerGuiā€™):SetTopbarTransparency(1)

Or maybe

wait()
pcall(function()
local starterGui = game:GetService(ā€˜StarterGuiā€™)
starterGui:SetCore(ā€œTopbarEnabledā€, false)
end)

The bar still appears at the top :frowning:

Try
wait()
pcall(function()
local starterGui = game:GetService(ā€˜StarterGuiā€™)
starterGui:SetCore(ā€œTopbarEnabledā€, false)
end)

Thatā€™s an issue with your ScreenGui. Turn on IgnoreGuiInset for it

1 Like

The bar still appears at the top :frowning:

How i do that? :scream: :scream:

Did u do it as a local script in starter character?

this is a local script in a tool in starterpack

Itā€™s a property of the ScreenGui

Itā€™s something in startergui thatā€™s prob the problem

1 Like

You can change itā€™s transparency as a local script in starterplayerscripts

i tried and sitll not working :frowning:

The new Topbar is transparent by default and the old transparent behavior is deprecated as documented: PlayerGui | Documentation - Roblox Creator Hub

What does the properties of your ScreenGui look like

I tried it and itā€™s the same, I need the green frame to be seen on the entire screen

This is enabled right?

image

image

If so, then itā€™s an issue with the Frame itself. Set the Position to 0, 0, 0, 0 and the Size to 1, 0, 1, 0

1 Like

Yeah turn on ignoreguilnset
That should fix the problem on whatever screen GUI ur having the problem on