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

How to convert this from Hopperbin to Workspace?

Asked by 10 years ago

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.

01local PartNames = {"Cube", "Crate", "Box"}
02local DistanceLimit = 10 --You must be within so many studs to pick up a part.
03 
04 
05--Variables
06local MovingObject = false
07local Plyr = game.Players.LocalPlayer
08local Tool = script.Parent
09 
10 
11--General Functions
12Move = (function (Mouse, Obj)
13    local BodyPosition, CharTorso = Instance.new("BodyPosition",Obj), Plyr.Character.Torso;
14    BodyPosition.maxForce = Vector3.new(Obj.Size.X*5000,Obj.Size.Y*5000,Obj.Size.Z*5000)
15    MovingObject = true
View all 48 lines...

1 answer

Log in to vote
1
Answered by 10 years ago
1mouse.KeyDown:connect(function(key))
2    if key == "e" then
3        --do stuff
4    end
5end)
0
I think this probably went completely over your head. That wouldn't work. :P TheRings0fSaturn 28 — 10y
0
I don't see why not. :P Protoduction 216 — 10y
Ad

Answer this question