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

Make player's character spawn on title screen?

Asked by 4 years ago

Hi, i am currently trying to make a clone of the players character on screen, i am absolutely horrible with coding and have tried to do some research on this but to no avail, i am currently creating a customisation screen and would like to display the characters body on the screen so they can see what it looks like while editing. I Have currently tried these two scripts:

game.Players.PlayerAdded:Connect(function(plr)
    local cchar = plr.Character:Clone()
    cchar:MoveTo(game.Workspace.charspawn.Position)
    cchar.Head.Anchored = true

end)

and

players = game:GetService("Players")

players.PlayerAdded:Connect(function(player)
    player.CharacterAddded:connect(function(character)
        local copy = character:Clone()
        copy.Parent  = game.Workspace.NPCtoPLAYER
    end
end)

Any help is appreciated thanks :)

Answer this question