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

How do I remove the topbar?

Asked by 8 years ago

How would I remove the top bar? And if you tell me the limit is 0.5 I know however if you play Phantom Forces the top bar is gone.

1 answer

Log in to vote
0
Answered by
LostPast 253 Moderation Voter
8 years ago

Put this in a local script. Replicated first or starterplayerscripts is the best.

pcall(function()
    wait()
    local starterGui = game:GetService('StarterGui')
    starterGui:SetCore("TopbarEnabled", false)
end)

there will be an extra 36 pixles on top of the screen to account for in your gui sizes.

Ad

Answer this question