here is the code I used for it:
local part = character:Clone() part.Parent = viewportFrame part.["Origin Position"] = Vector3.new(0, 0, 0)
The error I am getting is:
Syntax Error: Expected Identifier, got [
You can use :MoveTo()
which is a method of a model to move the position of a model
local part = character:Clone() part.Parent = viewportFrame part:MoveTo(Vector3.new(0, 0, 0))
There isn't really a possible way to access the 'Origin Position' property.
You can also set and move the primarypart which is like the root part of a model.
local part = character:Clone() part.Parent = viewportFrame part.PrimaryPart.Position = Vector3.new(0, 0, 0)
And why did you name a var of the model 'part'?