How do i make a button that inserts a model into workspace

How do i make a button that adds a model to workspace?
I tried:

script.Parent.MouseButton1Click:Connect(function()
	local PC = Instance.new("Model", game.Workspace)
	PC.Name = "Police car"
	PC.ModelId = "rbxassetid://6418230807"
end)

this adds a empty model to workspace, this is the model i want to insert:Police Car - Roblox

So does it work or no? I’m going to assume it doesn’t.

You must be using a local script, as I see the MouseButton1Click function.

Use a RemoteEvent, and do FireServer() on it.

And using another script (must be server sided) , do RemoteEvent.OnServerEvent:Connect blah blah blah, and then OVER THERE, you insert the model into the workspace.

Could u specify a bit more?