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

How do I make the TopBar of the roblox game invisible?

Asked by
Vxpper 101
5 years ago

This is my code, I believe that the reason this is not working is because of the access to Roblox

game:GetService("CoreGui").RobloxGui.TopBarContainer.BackgroundTransparency = 1

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago
wait()
pcall(function()
    local starterGui = game:GetService('StarterGui')
    starterGui:SetCore("TopbarEnabled", false)
end)

More info

Please accept and upvote this answer if it helped you.

Ad

Answer this question