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 ?
2 Likes
If I enter this into the command console, it works fine. workspace.Part.Parent = workspace.player
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