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
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
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