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)
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)
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
The bar still appears at the top
How i do that?
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
You can change itās transparency as a local script in starterplayerscripts
i tried and sitll not working
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?
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
Yeah turn on ignoreguilnset
That should fix the problem on whatever screen GUI ur having the problem on