ReSet Player-Names and Player-Images

How could I spoof player names and player images on the player menu and in the game.

I wan’t to do this for a streamer-mode were it hides player names and player avatars.

image

1 Like

I don’t think so no. I think both them are dealt with by the core GUI and scripts thing that we cannot edit (may be incorrect but I think that they are).

you have to access CoreGui and change it with your toes which is impossible but you can delete the player game.Players.yo:Destroy() which is useless

Deleting the player object will immediately disconnect it.

I thought i have seen people change other players names.
Of course client sided.

this would be possible by having a custom leaderboard but either way they can check the roblox menu screen which cant be customized unless you fully delete the home button

another way is to delete the player from others peoples client and the person will still exist
this will also affect the roblox home page

Hmm, I wanted a method of making streamer mode, almost like how it works in a popular game called “Rust”

What it does is changed the user’s name to a random name thats permeant on that server, now of course this is only for the client that has it enabled.

To remove the player names you could create a local script in StarterGui and type this,

game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)

This code will disable player names on the leaderboard including the client running the code.

To make other players invisible you can loop trough the players (game.Players) and set other player’s transparency to 1. Here’s an example:

for _,v in pairs(game.Players:GetChildren()) do
    if v ~= game.Players.LocalPlayer then
     for _,object in pairs(game.Workspace:WaitForChild(v.Name):GetDescendants()) do
       if object:IsA("BasePart") then
          object.Transparency = 1
       end
     end
    end
end

This was just an example and I wrote this here, it may be not performance friendly and buggy.

Make sure these scripts are localscript.

As mentioned in this post, I don’t exactly want to remove the usernames just change them

im sorry sadly this is not possible other than the character
the people will be listed in the home page and cant be changed username/displayname
the roblox value of a player to name is locked and cannot be changed.
as mentioned this is only possible by a custom leaderboard

Oh my bad, for that you should access to CoreGui which is restricted. Hiding them is easier and safer.
However, you can change their name displays that are at the top of their head. By just using the humanoid

This might work, by also masking their character.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.