| |
|
|
| 11 May 2015 07:33 AM |
for those who wanna do it <3
https://raw.githubusercontent.com/ROBLOX/Core-Scripts/master/CoreScriptsRoot/CoreScripts/PlayerListScript2.lua |
|
|
| Report Abuse |
|
|
Chrapnel
|
  |
| Joined: 01 Feb 2014 |
| Total Posts: 951 |
|
|
| 11 May 2015 07:34 AM |
| Unless this was updated quite recently, it doesn't work. |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 07:37 AM |
| It was updated 5 days ago by jmargh |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 07:40 AM |
| What is this 'playerlist' you speak of? |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 07:41 AM |
| Its roblox's current playerlist, however if you put it in game and disable the old one and all of that it stays invisible or something |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 08:20 AM |
why not just make a completely custom one?
I appreciate your attempt at humor |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 08:21 AM |
This is why it turns invisible.
local function onCoreGuiChanged(coreGuiType, enabled) if coreGuiType == Enum.CoreGuiType.All or coreGuiType == Enum.CoreGuiType.PlayerList then Container.Visible = enabled GuiService[enabled and "AddKey" or "RemoveKey"](GuiService, "\t") end end pcall(function() onCoreGuiChanged(Enum.CoreGuiType.PlayerList, game:GetService("StarterGui"):GetCoreGuiEnabled(Enum.CoreGuiType.PlayerList)) game:GetService("StarterGui").CoreGuiChangedSignal:connect(onCoreGuiChanged) end) |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 08:25 AM |
| marked that part out, still invisible |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 08:25 AM |
-- Start of Gui Creation local Container = Instance.new('Frame') Container.Name = "PlayerListContainer" Container.Position = UDim2.new(1, -167, 0, 2) Container.Size = MinContainerSize Container.BackgroundTransparency = 1 Container.Visible = false Container.Parent = RobloxGui |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 08:29 AM |
| the top part worked.. however the actual playerlist is goneeeee |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 08:31 AM |
| That's probably because it gets parented to CoreGui. |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 08:32 AM |
| Also.. You had to change Container.Visible to true in that second part. |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 08:35 AM |
| I did and I dont see anywhere were its parented to coregui |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 08:36 AM |
local RobloxGui = script.Parent Container.Parent = RobloxGui
Change RobloxGui to game.StarterGui. |
|
|
| Report Abuse |
|
|
|
| 11 May 2015 08:38 AM |
| I did that.. it made it all disappear again |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
| |
|
|
| 12 May 2015 03:05 PM |
| If you want the new playerlist as a script, why don't you convert it? You can find it in your Roblox folder, under Versions I believe. |
|
|
| Report Abuse |
|
|
|
| 12 May 2015 04:34 PM |
| I already have it, but it wont work. |
|
|
| Report Abuse |
|
|
|
| 12 May 2015 04:57 PM |
not fully possible because it needs access to the top bar open and close and it will prevent Friend Requests |
|
|
| Report Abuse |
|
|
|
| 12 May 2015 04:59 PM |
| idc about friend requests, and clonetrooper1019 did it with the last leaderboard version |
|
|
| Report Abuse |
|
|
| |
|