Modifiying the PlayerList from a LocalScript

Hello!

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…

Can u explain in a proper way what are u trying to do?

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

Also wut new PlayerList I’m confuzzled

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

(I corrected the post, there is no new PlayerList… I really don’t know what I had on my mind while writing this post lol.)

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

1 Like

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.

1 Like

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.