seansy
|
  |
| Joined: 06 Dec 2012 |
| Total Posts: 185 |
|
|
| 26 Apr 2015 10:52 PM |
| Is there a way to remove the top bar from games? It's really getting in the way and doesn't serve a purpose to me. |
|
|
| Report Abuse |
|
|
xlaser23
|
  |
| Joined: 10 Dec 2011 |
| Total Posts: 20341 |
|
|
| 27 Apr 2015 10:12 PM |
| Its robloxs gui i dont think its removable without a script |
|
|
| Report Abuse |
|
|
KodakKid3
|
  |
| Joined: 25 Dec 2008 |
| Total Posts: 2860 |
|
|
| 27 Apr 2015 11:34 PM |
ask this on the scripters forum, or check out the roblox wiki, it'll be there somewhere
yeah it'll take some script |
|
|
| Report Abuse |
|
|
chimmihc
|
  |
| Joined: 01 Sep 2014 |
| Total Posts: 17143 |
|
|
| 27 Apr 2015 11:37 PM |
Nope, impossible to remove.
I script -~ chimmihc |
|
|
| Report Abuse |
|
|
KodakKid3
|
  |
| Joined: 25 Dec 2008 |
| Total Posts: 2860 |
|
|
| 27 Apr 2015 11:45 PM |
what the hell
you can remove all of roblox's other default guis, ugh why won't they let you remove this
i guess because it houses the menu icon now but still wtf |
|
|
| Report Abuse |
|
|
9draco
|
  |
| Joined: 13 Nov 2010 |
| Total Posts: 5841 |
|
|
| 28 Apr 2015 01:14 AM |
| Im guessing they'll add something to that top GUI, but I hope they dont remove it. I kinda like it. |
|
|
| Report Abuse |
|
|
chimmihc
|
  |
| Joined: 01 Sep 2014 |
| Total Posts: 17143 |
|
|
| 28 Apr 2015 01:21 AM |
It's impossible to work with.
It effects the screen scale.
And being a core GUI it always has the upper hand with zindex, ruining loading GUIs.
I script -~ chimmihc |
|
|
| Report Abuse |
|
|
|
| 28 Apr 2015 02:07 AM |
Go into ROBLOX coregui, copy paste the top bar into your own GUI, and set the transparency to 0.
Loading guis not as crappy now |
|
|
| Report Abuse |
|
|
chimmihc
|
  |
| Joined: 01 Sep 2014 |
| Total Posts: 17143 |
|
|
| 28 Apr 2015 02:24 AM |
@Long
You don't understand that core GUIs have higher zindex than user GUIs?
I script -~ chimmihc |
|
|
| Report Abuse |
|
|
|
| 28 Apr 2015 02:32 AM |
| I know, but now you have a bar underneath the core gui is not transparent at all. |
|
|
| Report Abuse |
|
|
|
| 28 Apr 2015 02:32 AM |
| I know, but now you have a bar underneath the core gui that is not transparent at all. |
|
|
| Report Abuse |
|
|
Parkderp1
|
  |
| Joined: 19 Jan 2014 |
| Total Posts: 139 |
|
| |
|
|
| 28 Apr 2015 07:52 AM |
| http://www.roblox.com/Forum/ShowPost.aspx?PostID=149749147 |
|
|
| Report Abuse |
|
|
|
| 28 Apr 2015 08:54 AM |
| I have no problem with the Top-Bar. If you ask me it's actually rather cool. Although I'll need some getting used to for the health |
|
|
| Report Abuse |
|
|
|
| 28 Apr 2015 11:00 AM |
Here's a simple script to change the transparency of the top bar: game.Players.LocalPlayer.PlayerGui:SetTopbarTransparency(0)
It has to be a LocalScript in StarterGui.
Note: Unfortunately, you can only set it at the maximum of 0.5, so you can't make it transparent. |
|
|
| Report Abuse |
|
|
|
| 28 Apr 2015 11:44 AM |
This is so beautiful to me
https://www.youtube.com/watch?v=3fobErqvOJw |
|
|
| Report Abuse |
|
|
|
| 28 Apr 2015 01:58 PM |
| Simply I thought they removed that. |
|
|
| Report Abuse |
|
|
dudeviet
|
  |
| Joined: 19 Feb 2015 |
| Total Posts: 1 |
|
|
| 01 May 2015 11:47 PM |
| In fps games like paintball the top bar is heavily affecting the gameplay since the guns are shooting up above the crosshair, which is moved down because of the top bar. There should be a way to remove it since having some players liking how it looks is not as important as proper gameplay -.- |
|
|
| Report Abuse |
|
|
chimmihc
|
  |
| Joined: 01 Sep 2014 |
| Total Posts: 17143 |
|
|
| 01 May 2015 11:56 PM |
@dudeviet
That's because the people that make those games are idiots that don't know about mouse.Icon.
I script -~ chimmihc |
|
|
| Report Abuse |
|
|
seansy
|
  |
| Joined: 06 Dec 2012 |
| Total Posts: 185 |
|
|
| 02 May 2015 01:55 PM |
| Do you even realise how old that game is? The creator has already improved 110% her just doesn't care about PB1 anymore. |
|
|
| Report Abuse |
|
|
|
| 01 Aug 2015 11:32 AM |
It's possible to remove! These are the removable UIs:
Enum.CoreGuiType.PlayerList -- This is the PlayerList on the right. Enum.CoreGuiType.Health -- This is the Health on the CoreGui(Top Bar) Enum.CoreGuiType.Backpack -- This is the Backpack (Inventory) on the CoreGui(Top Bar) Enum.CoreGuiType.Chat -- This is the Chat.
First, put a LocalScript in ReplicatedFirst. Then Put this is the LocalScript:
local StarterGui = game:GetService('StarterGui') StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false) -- To change what this removes, replace Health with one of the things at the top of this message, then there you go! Also if you want to remove more than one, do this:
local StarterGui = game:GetService('StarterGui') StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false) -- Chang to whatever. StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false) -- Change to whatever.
Well your welcome to everyone that doesn't want the CoreGui things there. PM me if you need anything help with anything else about scripting! Bye. c: |
|
|
| Report Abuse |
|
|
| |
|
| |
|
BogyMac
|
  |
| Joined: 04 Nov 2011 |
| Total Posts: 823 |
|
|
| 28 Aug 2015 05:53 PM |
| They were talking about the "TopBar", the only GUI you can't remove using conventional methods. I am here for the same reason as everyone else: How DO you remove it? |
|
|
| Report Abuse |
|
|
|
| 28 Aug 2015 05:56 PM |
You don't remove it. Their reasoning behind making it non-removable is so players always have an easy way to leave the game, or so I'm told.
Lord of all things, breaded and unbreaded. |
|
|
| Report Abuse |
|
|