Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

My drag part LocalScript isn't working, anyone know why?

Asked by 6 years ago

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?..

01local player = game.Players.LocalPlayer
02local mouse = player:GetMouse()
03local down
04local mtarget
05 
06function clickObj()
07if mouse.Target ~= nil then
08mtarget = mouse.Target
09print(mtarget)
10down = true
11mouse.TargetFilter = mtarget
12print(mouse.TargetFilter)
13end
14end
15mouse.Button1Down:connect(clickObj)
View all 31 lines...
0
it'll be a while but i can tell you what you're doing wrong just hold on (like 10 - 20 mins) mattchew1010 396 — 6y
0
Aye, thank m8! andyad13 74 — 6y
0
Thanks* andyad13 74 — 6y
0
nevermind, figured it out. Thanks anyway! andyad13 74 — 6y

1 answer

Log in to vote
1
Answered by 6 years ago

this is really buggy actually sorry :( but heres what i have so far local script:

01local mouse = game.Players.LocalPlayer:GetMouse()
02local Click = false
03mouse.Button1Down:Connect(function() Click = true end)
04mouse.Button1Up:Connect(function() Click = false end)
05local loop = true
06local target
07mouse.Move:Connect(function()
08if 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
12game.ReplicatedStorage.NewPos:FireServer(Vector3.new(x,y,z), mouse.Target)
13end
14end
15end)
View all 36 lines...

serverScript:

01local dragger = script.Dragger:Clone()
02game.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.Part0 = Object.PrimaryPart
07        dragger.Parent = Object
08        weld.Part1 = dragger
09    else
10        weld.Part0 = Object
11        dragger.Parent = Object
12        dragger.Position = Object.Position + Vector3.new(Object.Size.X + 0.05, Object.Size.Y + 0.05, Object.Size.Z + 0.05)
13        weld.Part1 = dragger
14    end
15    bp.Parent = dragger
View all 30 lines...
Ad

Answer this question