Is it possible to make a script that duplicates a model and spawns it next to you

I have tried many scripts and none of them work they will only duplicate parts and im trying to make a script that duplicates a model and places it next to you i have even tried to replace the name of the part and put the name of the model and it still wont work

Yes, it is possible to do that.

ive tried everything i could think of

local model = YOUR_MODEL
local plr = YOUR_PLAYER

local modelClone = model:Clone()
modelClone:PivotTo(plr.Character.PrimaryPart.CFrame * CFrame.new(5, 0, 0))
modelClone.Parent = workspace
1 Like

thats the thing im pretty sure userID is gonna work

tysm tho thats one i couldnt figure out

Mark as answer if it solves the problem.

1 Like