How to make a fake player

I need to make a fake player in my game, i want to the fake player appear in the player list.
Idk how to make, but ik that’s possible, bc i can see it in others games.

6 Likes

make a player and parent it to Players,

game:Getservice("Players");

I’m pretty sure those games have custom leaderboards, or ones that are very similar to the Roblox one, they just have module full of fake player names and pick some random ones most probably.

2 Likes

Agreed, I do not think it is possible to actually create a “player” in the game.

1 Like

now i know how to make.

Instance.new("Player", game.Players)

it’s working but i need permission to run it, so u right about the custom leaderboards.

1 Like

found something but it only works on the local player:

game.Players:CreateLocalPlayer(0)
3 Likes

This actually can’t be used in-game since it is locked to the command bar and will error when used in Scripts & LocalScripts.

7 Likes

This only works to manually live test play your game.

2 Likes