I am trying to get rid of my name off the player list. Please help.
My issue with doing this is I am not that great of a scripter, because I am mostly a builder.
I have been thinking that maybe you need to make a custom playerlist and then some how customize it to where I do not appear there. I do know how to make a custom player list already, but I am not sure if you are able keep the playerlist the same way. That is a preference that would be needed, but if I need to I would use a custom player list. Thank you in advanced
Simply go into CoreGui copy the leaderboard gui.
Disable the roblox Default leaderboard
Example:
game.Players.PlayerAdded:Connect(function(player)
if player.Name == "ROBLOX" then
print("no no dont add")
else
local gui = script.plr:Clone()
gui.TextLabel.Text = player.Name
gui.Parent = game.StarterGui.Leaderboard.PlayersList
for i,v inpairs(game.Players:GetPlayers)
local gui2 = script.plr:Clone()
gui2.TextLabel.Text = player.Name
gui2.Parent = v.PlayerGui.Leaderboard.PlayersList
end
end
end
(varribles such as LeaderBoard, TextLabel are just random it will be differnt)
Pretty much you copied roblox default leaderboard and you can block it from adding specific players to it.
I am almost sure it would be easier to make a custom gui and do it, but maybe DrxpLoxs knows something. I would love to know if you can edit core gui. How do you do it?
No problem on all scripting support (my expertise at) I strive my best to help users with there problems such as creating them models, and scripts and extra support for 100% Free, I generally like helping the ROBLOX Community and others.