Can you screenshot the errors please?
It seems like you accidentally deleted some lines from the script that I sent. Please paste the following code into the script, replacing the current code:
local model = script:FindFirstChildOfClass("Model")
if not model:FindFirstChild("HAS_MORPH") then
local val = Instance.new("BoolValue")
val.Name="HAS_MORPH"
val.Parent=model
end
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
if not char:FindFirstChild("HAS_MORPH") then
wait()
local cframe = char.HumanoidRootPart.CFrame
local morph = model:Clone()
morph.Name = plr.Name
plr.Character = morph
morph.HumanoidRootPart.CFrame = cframe
morph.Parent=workspace
end
end)
end)
Yes, I modified it a bit
it works but I can’t move.[sentence]
Make sure the rig is unanchored.
It works, thank you.[sentence]
1 Like
Glad to help Good luck with your game!
Thank you! it means a lot.{sentence}
1 Like
You should make a new topic for this.
Okay, but I figured it out.[sentence]
1 Like