plate.ClickDetector.MouseClick:Connect(function(plr)
print(plr.Name)
local apple = plr.Backpack:WaitForChild("Apple")
apple.Parent = game.Workspace
apple.Handle.Position = game.Workspace.zombiesgamerash.RightHand
local tween = game:GetService("TweenService")
local tweeninfo = TweenInfo.new(1, Enum.EasingStyle.Quad, Enum.EasingDirection.InOut, 0, false)
local prop = {
Position = plate.Position + Vector3.new(0, 0.5, 0)
}
local tweeny = tween:Create(game.Workspace.Apple.Handle, tweeninfo, prop)
tweeny:Play()
apple.Handle.Anchored = true
end)``` I am trying to do a tween from the players right hand to the plate but it keeps giving me this error and idk how to fix it
#Unable to assign property Position. Vector3 expected, got Instance how do I fix this error
13 messages · Page 1 of 1 (latest)