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 ?
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! 
you didnt parent the Rock1
try adding:
Rock1.Parent = workspace
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
Yeha, I forgot about it, sorry! 