How do you access the position of a meshpart

I know this might sound stuiped but im trying to access the positon of the uppertorso but when I run the script and do it and it says Positon is not a valid member of MeshPart “Workspace.antekman.UpperTorso”. I checked inside workspace and this part had the property of position but it still doesnt work. Am I doing something wrong or does it not work please tell me the solution to this problem.

local replicatedStorage = game:GetService(“ReplicatedStorage”)
local getPlayer = replicatedStorage:WaitForChild(“GetPlayer”)
local nuke = game.ServerStorage:FindFirstChild(“Nuke”)
local players = game:GetService(“Players”)

getPlayer.OnServerEvent:Connect(function(name)
local character = name.Character
local clone = nuke:Clone()
local finalpos = character.UpperTorso.Positon
clone.Position = Vector3.new(finalpos.X,700,finalpos.Z)
clone.Parent = workspace
end)

You have a typo. It’s Position, not “Positon.”
You must carefully right out property names, as they are case sensitive. Even the slightest mistake could easily be overlooked, yet halt the operations of the script.

Bruh I didnt see that thanks for pointing out now i just made myself look stuiped now.

Haha! We’ve all done it before. No worries. Good luck!