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)