I want to be able to clone and move a model from the Lighting and i've tried :MoveTo, CFrame.new but non of them work how would someone do that
I don't have a script
You can use MoveTo, TranslateBy, or SetPrimaryPartCFrame.
local model=script.Parent model:MoveTo(Vector3.new(0,0,0))
local model=script.Parent model:TranslateBy(Vector3.new(0,0,0))
local model=script.Parent model:SetPrimaryPartCFrame(CFrame.new(0,0,0))