So I was wondering, is there a way to tweak the PlayerList / Leaderboard.
In my case, I need to move the Leaderboard when a certain thing happens?
I want to place a special GUI where the leaderboard already is (right upper corner), so I thought that I could tween (move) the leaderboard GUI a bit to the side while that GUI is shown, but how would I access it? The leaderboard GUI is in CoreGui, and I am not sure how would I get access to it with a LocalScript. I could disable the PlayerList with StarterGui | Roblox Creator Documentation but I donât quite want to do that, I want the PlayerList being functional while that certain GUI is shownâŚ
Not sure if itâs possible, cause you canât mess/edit with the CoreGuiâs in any sort of way (Exceptions being SetCore & SetCoreGuiEnabled) & even if it did it would result in a huge hacky method of doing so
Personally I wouldnât recommend doing this, and Iâd just create your own PlayerList system so you can easily tween it
Hmm, well I thought about creating my own PlayerList, and I might just end up doing that, Iâll review some other options I currently have, and then I will decide on how will I go on about this.
I consider the PlayerList on the left as the âoldâ PlayerList, and the PlayerList on the right as the ânewâ PlayerList.
I see, well I donât think itâd make any sort of difference anyways I suppose
Itâd just be way easier to create your own âPlayerListâ UI, rather than having to hack/fork around with the CoreGui of its own cause itâs highly unrecommended to do so
All youâd really need to do is just create 1, tween the custom PlayerListâs Frame to where you want it to be & you should be all set
Oh! I get it now, You want to place a GUI at the place of the leaderstats/playerlist.
I donât think thatâs possible to move the CoreGui.
Maybe try to make a playerlist your own?
Btw, there are many tutorials on youtube! try searching for a one.
Thank you for replying, [ Jackscarlett, stratolog. ]
Iâll look at what I could possibly do, I like the way Roblox has done the PlayerList, but I will probably either end up making my own PlayerList or I will just disable the PlayerList using StarterGui:SetCoreGuiEnabled while there is another GUI at its position.