Script helping CFrame

script.Parent.ClickDetector.MouseClick:Connect(function(plr)
	local Rock1 = game.Workspace.Rocks.Rock1:Clone()
    Rock1.CFrame = game.Workspace.DropHere.CFrame
	warn("Copied")
end)

This script not working why ?

What error are you getting? Could you please send a screenshot? Thanks! :slight_smile:

you didnt parent the Rock1
try adding:
Rock1.Parent = workspace

1 Like

The Rock is in Workspace already…

EDIT: I forgot the :Clone() function sets the parent to nil. Sowwy!

i think when you clone it parents the clone to nil tho

1 Like

Yeha, I forgot about it, sorry! :slight_smile:

2 Likes