So when the user clicks and holds on a part, that object follows the mouse. But I only want it to be able to move specific parts. Anyone know why this isn't working?..
01 | local player = game.Players.LocalPlayer |
02 | local mouse = player:GetMouse() |
03 | local down |
04 | local mtarget |
05 |
06 | function clickObj() |
07 | if mouse.Target ~ = nil then |
08 | mtarget = mouse.Target |
09 | print (mtarget) |
10 | down = true |
11 | mouse.TargetFilter = mtarget |
12 | print (mouse.TargetFilter) |
13 | end |
14 | end |
15 | mouse.Button 1 Down:connect(clickObj) |
this is really buggy actually sorry :( but heres what i have so far local script:
01 | local mouse = game.Players.LocalPlayer:GetMouse() |
02 | local Click = false |
03 | mouse.Button 1 Down:Connect( function () Click = true end ) |
04 | mouse.Button 1 Up:Connect( function () Click = false end ) |
05 | local loop = true |
06 | local target |
07 | mouse.Move:Connect( function () |
08 | if loop = = false and Click = = true then |
09 | if mouse.Target then |
10 | target = mouse.Target |
11 | local x,y,z = mouse.Hit.x, mouse.Hit.Y, mouse.Hit.Z |
12 | game.ReplicatedStorage.NewPos:FireServer(Vector 3. new(x,y,z), mouse.Target) |
13 | end |
14 | end |
15 | end ) |
serverScript:
01 | local dragger = script.Dragger:Clone() |
02 | game.ReplicatedStorage.StartDragging.OnServerEvent:Connect( function (plr, Position, Object) |
03 | local weld = Instance.new( "Weld" ) |
04 | local bp = Instance.new( "BodyPosition" ) |
05 | if Object:IsA( "Model" ) then |
06 | weld.Part 0 = Object.PrimaryPart |
07 | dragger.Parent = Object |
08 | weld.Part 1 = dragger |
09 | else |
10 | weld.Part 0 = Object |
11 | dragger.Parent = Object |
12 | dragger.Position = Object.Position + Vector 3. new(Object.Size.X + 0.05 , Object.Size.Y + 0.05 , Object.Size.Z + 0.05 ) |
13 | weld.Part 1 = dragger |
14 | end |
15 | bp.Parent = dragger |