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

[CharacterAutoLoad] Please Help?

Asked by 9 years ago

Hello, I know this isnt a request but I need help and the only wiki article I could find is on how to make it where the character wont load! I want to load the character as a model in ServerStorage! Please Help! NOT A REQUEST!
Example. http://www.roblox.com/Boat-Simulator-place?id=188728332

2 answers

Log in to vote
0
Answered by 9 years ago

It seems like you are trying to accomplish something similar to the following:

local Players = game.Players
Players.PlayerAdded:connect(function(Plr)
Plr.CharacterAdded:connect(function(Char)
Char.Parent = game:GetService("ServerStorage")
end)
end)

Ad
Log in to vote
0
Answered by 9 years ago

If you want to have a model of the character in ServerStorage, do :clone() on the player model and clone it into ServerStorage

0
Did you even read the question? I posted an example and everything and you gave me the exact opposite answer! Timster111 25 — 9y
0
I don't think that the player would appear if it was in ServerStorage. The only way to is it it's in workspace. SpazzMan502 133 — 9y
0
Omg! Look at the example! Timster111 25 — 9y

Answer this question