How to convert this from Hopperbin to Workspace?
Basically, what I'm asking is, how do I convert this to the Workspace? And instead of clicking on the part, you press E, and the part floats until you press E again. Basically, I'm trying to mimic the Source Engine's pick up function with this script.
01 | local PartNames = { "Cube" , "Crate" , "Box" } |
02 | local DistanceLimit = 10 |
06 | local MovingObject = false |
07 | local Plyr = game.Players.LocalPlayer |
08 | local Tool = script.Parent |
12 | Move = ( function (Mouse, Obj) |
13 | local BodyPosition, CharTorso = Instance.new( "BodyPosition" ,Obj), Plyr.Character.Torso; |
14 | BodyPosition.maxForce = Vector 3. new(Obj.Size.X* 5000 ,Obj.Size.Y* 5000 ,Obj.Size.Z* 5000 ) |
16 | while (MovingObject and (CharTorso.Position-Obj.Position).magnitude < DistanceLimit) do |
17 | BodyPosition.position = (CFrame.new(CharTorso.Position, Mouse.Hit.p) * CFrame.new( 0 , 0 ,-DistanceLimit + 3 )).p |
21 | BodyPosition:Destroy() |
25 | Tool.Selected:connect( function (Mouse) |
26 | Mouse.Button 1 Down:connect( function () |
31 | local MouseTarget = Mouse.Target; |
32 | if not MouseTarget or not PartNames [ MouseTarget.Name ] or MouseTarget.Anchored |
33 | or (Plyr.Character.Torso.Position-MouseTarget.Position).magnitude > DistanceLimit then |
36 | Move(Mouse, MouseTarget); |
40 | Tool.Deselected:connect( function () |
46 | PartNames [ PartNames [ i ] ] = true |