let me test this out rq and ill lyk
If it didnât work sorry. Iâm sorry that it didnât work I tried what I could Iâm not the best scripter in the world. Plus, I never made this type of system either.
still not working i cant seem to find any issues with the code but its still just not moving it
Hmmm, give me a few minutes to think about the code.
its alr man thanks for trying im going to see what i can do to fix it
One other question. what is ObjectName for anyways?
an object in replicated storage
wait this might be the problemâŚ
should it be model if its a model?
Wait are you trying to move it into replicatedStorage. Or are you trying to take it into Workspace?
i have a character named âsilverâ and i want to make it move from replicatedstorage to replicatedstorage.characters
I see what your doing now I think.
alr i think the âobjectnameâ is a mistake
i thought it was that bc i didnt know how to make a model move from one place to another
Lemme try this give me a few mins to see if I can figure it out.
Hereâs your script. @RozuraX.
local RS = game:GetService(âReplicatedStorageâ)
game.Players.PlayerAdded:Connect(function()
for i,v in pairs(game.Players:GetChildren()) do
if v.Name == âRozuraxâ then
if v:FindFirstChild(âCharacterâ) then
local objectName = âOwnerSilverâ
local object = game.RS:WaitForChild(objectName)
if object then
object.Parent = RS.Characters
print(âMoved into the folder.â)
else
print(âNot moved.â)
end
local clone = object:Clone()
clone.Parent = game.ReplicatedStorage.Characters
end
end
end
end)
I have not tested it yet. So, I have no clue if it works or not.
still no⌠what is the point of âif v:FindFirstChild(âCharacterâ) thenâ bc i have nothing called âcharacterâ
You were trying to find the character of the player werenât you?
theres a folder called âcharactersâ which the âcharactersâ turn your player into something else, like a character selection thing