How can I make a click detector script that clones an object into the workspace? is it something like
local part = game.Workspace.part local clonepart = part:Clone() script.Parent.MouseButtonDown:Connect(function() --clone script thing that i dont know how to do end)
local part = workspace.Part -- Defines the part script.Parent.MouseClick:Connect(function() local part2 = part:Clone() -- Clones the original part part2.Parent = workspace -- Parents the part to workspace (already in it lmao) end)