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

How do I make all Players a Model?

Asked by 10 years ago

I want to know how you can make a Player a Model, basically how it is in "The Stalker".

2 answers

Log in to vote
0
Answered by 10 years ago

I recently finished this project. I will not fully explain the script, but it involves creating a new model when a player spawns, naming the model what you want, transferring all the parts and scripts to that model, then setting the character to the model.

Ad
Log in to vote
0
Answered by
drahsid5 250 Moderation Voter
10 years ago

Something like:

local Mdl  = Instance.new("Model", Workspace)
Mdl.Name = "Players"
game.Players.PlayerAdded:connect(function(player)
player.Character.Parent = Mdl
end)

Answer this question