Too tired to help you much here but heads up that instead of doing if db == false and mouse.Target.Anchored == false then
you can just do if (not db) and (not mouse.Target.Anchored) then
this right here is the culprit.
you created a LocalPart
and you fired the RemoteEvent with that LocalPart
a Local part is a part that only exist on the client. and Trying to fire it to server the server will get it back as nil.
so the LocalPart created from
mouse.Target
you should save the part it was cloned from as a variable
local Target=mouse.Target
local ClonedObject=Target:Clone()--replaced newterget
and right here
replace newterget with the new Target
here is the new code
local mouse = game.Players.LocalPlayer:GetMouse()
local db = false
mouse.Button1Down:Connect(function()
if db == false and mouse.Target.Anchored == false then
db = true
local Target = mouse.Target
Target.CanCollide = false
Target.Parent = workspace
mouse.Button1Down:Connect(function()
if mouse.Target.Anchored == false then
local Target = mouse.Target
local ClonedObject = Target:Clone()
ClonedObject.Parent = workspace
ClonedObject.Anchored = true
mouse.TargetFilter = ClonedObject
mouse.Move:Connect(function(hit)
ClonedObject.Position = mouse.Hit.Position
ClonedObject.Position = Vector3.new(math.round(ClonedObject.Position.X,1),math.round(ClonedObject.Position.Y,1),math.round(ClonedObject.Position.Z,1))
ClonedObject.Position = ClonedObject.Position + Vector3.new(0,ClonedObject.Size.Y / 2,0)
mouse.Button1Up:Connect(function(hit)
script.Parent.RemoteEvent:FireServer(mouse.Target)
script.Parent.SFX:Play()
end)
end)
end
end)
wait(2)
db = false
end
end)
I didnt debug this code but if you want me to just message me again.