Creating a clone of ANY roblox player

Hey,I have a global leaderboard system that keeps track of ppls wins in the game, i would like to create a clone of the number 1 player on the leaderboard and just have them placed in front of the leaderboard, but im unsure of how to clone them, thanks.

Use a dummy and a HumanoidDescription:

local Dummy = workspace.Leaderboard.Dummy --path of your dummy
local topPlayerId = 0 --top leaderboard player user id
local description = game.Players:GetHumanoidDescriptionFromUserId(topPlayerId)

Dummy:FindFirstChildWhichIsA("Humanoid"):ApplyDescription(description)
1 Like

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