Hello!
I am currently running into an error while trying to position a part
“Z cannot be assigned to”
I am not sure whats going on, here is my code
if realBullet:IsA("Part") then
print("its a part")
realBullet.Parent = hitPart
print("parent ".. tostring(realBullet.Parent))
realBullet.Parent.Part.Size.Z = hitPart.Size.Z * 2 -- this is where the error is coming from
else
warn("its not a part")
end