I need to bring a cloned part to the player.
The part doesn’t go the the location and it errors saying “Position is not a valid member of Vector3”.
I tried switching from position to position but it didn’t work so I tried to set it’s CFrame.
Script:
local clone = droppedItem:Clone()
clone.Parent = game.Workspace
local pname = player.name
local character = game.Workspace:WaitForChild(pname).UpperTorso.Position
clone:SetPrimaryPartCFrame(CFrame.new(character.Position.X,character.Position.Y,character.Position.Z))
local clone = droppedItem:Clone()
clone.Parent = game.Workspace
local pname = player.Name
local character = game.Workspace:WaitForChild(pname).UpperTorso.Position
clone:SetPrimaryPartCFrame(CFrame.new(character))
local clone = droppedItem:Clone()
clone.Parent = game.Workspace
local pname = player.Name
local character = game.Workspace:WaitForChild(pname)
clone:SetPrimaryPartCFrame(character.UpperTorso.CFrame)