Im trying to make a thing where when you press the button, It Creates an already made object (In lighting) And then positions it next to the printer (Position help)
I would put the object in ReplicatedStorage and then clone it. You can set the position of the clone using Vector3.
local Object = game.ReplicatedStorage.TestPart:Clone() -- Clones object from ReplicatedStorage
Object.Parent = game.Workspace
Object.Position = Vector3.new(0, 0, 0) -- Objects Position
2 Likes
I have children inside the object, And when I clone the object, The children spawn where the paper used to be (Replicated storage)