How can is set the Players as a Parent of a Part?

I tried to set the player as a parent of a Part like this:part.Parent = workspace.player
I made a script which welded the part to a limb of the player. And if i type:workspace.player.Part:Destroy() The Part wont disappear. Any answers ?

1 Like

If I enter this into the command console, it works fine. workspace.Part.Parent = workspace.player

1 Like

You forgot to capitalize the “part” when attempting to get it

if this is a local script

local Part = Instance.new(“Part”)
Part.Parent = game.Players.LocalPlayer

or

workspace.Part.Parent = game.Players.LocalPlayer