Can't seem to clone a character basepart then position it

I’m trying to clone a character basepart then position to an attachement however it’s not seem to be appearing.

local __CLONE= Character:FindFirstChild("Right Leg"):Clone()
__CLONE.Parent = __HANDLE
__CLONE.Position = __HANDLE.Attachment.Position
__CLONE.Anchored = true
local __WELD = Instance.new("WeldConstraint")
__WELD.Parent = __HANDLE
__WELD.Name = "fakeweld"
__WELD.Part0 = __HANDLE.Close
__WELD.Part1 = __CLONE

Is the Character archivable? (allows it to be cloned)

1 Like

Not that i’m aware of, How do i turn it on?

You can run this script in ServerScriptService.

game:GetService("Players").PlayerAdded:Connect(function(player)
	player.CharacterAdded:Connect(function(character)
		character.Archivable = true
	end)
end)

Hope this helped! :slight_smile:

I tried that and the character right leg still wouldn’t clone.

I’m not sure, I tried enabling archivable like that and it worked. I haven’t tried cloning anything, I will try now

1 Like

image
image
Cloning seemed to work for me.

Try this in the Roblox client, studio doesn’t pick up .PlayerAdded events due to them connecting too late.

1 Like