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

Is there any way to remove the top bar in a game for cinematic purposes?

Asked by 3 years ago

Is there any way to do this? I am trying to make a horror style game but i cannot make the camera scenes look good with the top bar.

0
Please use the search method before asking any question. There are already a lot of answered questions on this topic. Techyfied 114 — 3y

1 answer

Log in to vote
0
Answered by
Ziffixture 6913 Moderation Voter Community Moderator
3 years ago

You can do this by disabling the top bar entirely; which includes all subsequent sections such as the Backpack & Chat icons. Or, by setting the transparency:

local StarterGui = game:GetService('StarterGui')

StarterGui:SetCore("TopbarEnabled", false)

---------------

local Players = game:GetService("Players")


local Player = Player.LocalPlayer

local PlayerGui = Player:WaitForChild("PlayerGui")


PlayerGui:SetTopbarTransparency(1)
Ad

Answer this question