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