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

Hide bar at top of screen?

Asked by 4 years ago
Edited 4 years ago

How do i hide this bar thing at the top? its because my black screen fade doesnt hide it THIS is what i mean

Note - i have no clue what to call it

Note2 - in that gif i show how it doesnt work in game but it looks fine in studio

Note3 - ignore the other uis and script names

2 answers

Log in to vote
3
Answered by 4 years ago

Set the IgnoreGuiInset property of your screenGui to true. It will make the screenGui ignore the automatic offset Roblox applies because of that bar.

https://developer.roblox.com/en-us/api-reference/class/ScreenGui

0
yes thank you! NubScripters 126 — 4y
Ad
Log in to vote
1
Answered by 4 years ago

This should do it

--Place inside localscript inside StarterPlayerScripts
wait()
pcall(function()
    local starterGui = game:GetService('StarterGui')
    starterGui:SetCore("TopbarEnabled", false)
end)

Read more: https://devforum.roblox.com/t/hidable-topbar/22349

0
thanks let me test NubScripters 126 — 4y
0
sadly it did not : ( it hid everything but the ui jsut cant go over it NubScripters 126 — 4y

Answer this question