You can write your topic however you want, but you need to answer these questions:
-
I want to name player’s ‘username’ appear on chatting and leaderboard and character. not displayname
-
How do it make it?
You can write your topic however you want, but you need to answer these questions:
I want to name player’s ‘username’ appear on chatting and leaderboard and character. not displayname
How do it make it?
For the name above the link player you just have for to write a simple script along the lines of:
local function ChangeDisplayName(player)
player.CharacterAdded:Connect(function(char)
local hum = char:FindFirstChild("Humanoid")
hum.DisplayName = player.Name
end)
end
game.Players.PlayerAdded:Connect(ChangeDisplayName)
(note this must be a server script)
Ok so for the chat issue as far as I am concerned it is impossible to remove display names, however making a custom chat is an option other than that there is no other way that I am aware of.
how about chatting and leaderboard
The only way to use chat is a custom chat, and the only way for leaderboard is a custom leaderboard. I can send over some tutorial videos explaining how to make those items or model links.
then can you let me know how to make custom chat/leaderboard
I think you cannot fully disable display names because of some core gui elements. The best you can do right now to make a custom chat.
To remove Display Names from chat, Enter The game from studio & Copy ClientChatModules
Stop the game Instance and paste ClientChatModules In “Chat”, Open the script In ClientChatModules named ChatSettings look for module.PlayerDisplayNamesEnabled set It to false, Your done