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

how do I use the dragger instance and how can I utilize it in my script?

Asked by 5 years ago
01local tool = script.Parent.Parent
02local char = tool.Parent
03local plr = game.Players.LocalPlayer
04local mouse = plr:GetMouse()
05 
06 
07 
08 
09local dragger = Instance.new("Dragger")
10 
11dragger.MouseDown:Connect(function()
12    local hit = mouse.Hit
13    local target = mouse.Target
14    --moving "mouse.target" ???--
15end)

I have a simple localscript for testing the dragger instance but im stuck.

how do I use it? how do I "drag" mouse.Target?

0
You mean to move the part with the mouse, right? Eternalove_fan32 188 — 5y

1 answer

Log in to vote
1
Answered by 5 years ago

https://robloxplosion.blogspot.com/2017/03/scripting-how-to-script-moveable.html --Credits to this guy

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

Answer this question