01 | local tool = script.Parent.Parent |
02 | local char = tool.Parent |
03 | local plr = game.Players.LocalPlayer |
04 | local mouse = plr:GetMouse() |
05 |
06 |
07 |
08 |
09 | local dragger = Instance.new( "Dragger" ) |
10 |
11 | dragger.MouseDown:Connect( function () |
12 | local hit = mouse.Hit |
13 | local target = mouse.Target |
14 | --moving "mouse.target" ???-- |
15 | end ) |
I have a simple localscript for testing the dragger instance but im stuck.
how do I use it? how do I "drag" mouse.Target?
https://robloxplosion.blogspot.com/2017/03/scripting-how-to-script-moveable.html --Credits to this guy
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) |