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

Portion of my menu screen is cut off by default?

Asked by
nicros 165
8 years ago

http://prntscr.com/a3rpif

so i have a basic menu screen with a play button and stuff like that, but the very top of it is cut off by default by w/e roblox does, and i was wondering where do i go to edit/remove that small section i point to in the screen pic above so my menu screen goes to the very top?

1 answer

Log in to vote
1
Answered by 8 years ago

Ok so the issue i see is the top bar. Roblox has added a new feature which allows you to remove that top bar. This can be done like so :

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

You need to use pcall because otherwise it will strike an error and won't remove it.

~~Hope i Helped

look here for reference

Ad

Answer this question