Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How to do a multi-player test in studio where the joining players have custom displaynames?

Asked by 2 years ago

I can do a test play, but the players all show up with Displayname "player" which I would like to customize. Is it possible?

0
I HATE THAT SO MUCH, what I did was made a custom admin script to use throughout all of my games and had it titled "Neils admin - username (not display name)", I think just renaming the display name to the username is what should be done, not sure if this is what you were talking about. greatneil80 2647 — 2y

1 answer

Log in to vote
0
Answered by 2 years ago
Edited 2 years ago

I do not belive that you can change the name of the players but generaly the players are displayed as "player" but has different names in the game.Players so if you run a script that prints every player that joined you will most likely see

Player1 Player2

I tested this with a simple script

local Players = game:GetService("Players")


Players.PlayerAdded:Connect(function(player)

    print(player.Name)

end)

https://developer.roblox.com/en-us/articles/game-testing

Ad

Answer this question