CFrame Error with position

Hello, im trying to clone a model

local mapSelected = Tutorialmaps[math.random(1, #Tutorialmaps)]
image

And When it clone it, it dont change the cframe position

Anyone know how i can fix this

You’re not setting the clone’s position to the workspace, instead, you’re setting the original map’s CFrame.

local clone = mapSelected:Clone()
clone:SetPrimaryPartCFrame(CFrame.new(-151.5, 18.5, -502.5))
clone:SetPrimaryPartCFrame(CFrame.new(-151.5, 18.5, -502.5))

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.