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

How do I make two parts slide like on a forklift?

Asked by 9 years ago

I'm working on a game and I've run into a problem scripting the motion of the forks of a forklift. I've got the model done, but no matter what I try in my script using CFrame and other API calls, I cannot change the position of the forks relative to the beam that holds them. If I break the joint between the forks and the beam, then I can move them, but then of course they don't work as a fork lift.

Here is the script I've tried most recently: -- ************************************************************************************

-- LiftTruckOperControlEven.OnServerEvent handler

-- In this function we will process the received events from the EventServer, fired by -- key press events handled by the Local Script. This function must -- * parse the sending player -- * parse the event "type" sent in arg1 -- * Confirm the player has a vehicle created of the correct type

-- * Confirm the player is the occupant of the vehicle with their name on it

game.Workspace.LiftTruckOperControlEvent.OnServerEvent:connect(function(player, arg1) -- define the function that will be called when the event is fired

01if (player ~= nil) then    
02    local vehicleName = player.Name.."ContainerLiftTruck"
03    if ( game.Workspace:FindFirstChild(vehicleName) and
04         (player.VehicleTag.Value == "ContainerLiftTruck") ) then
05        local playersTruck = game.Workspace:FindFirstChild(vehicleName)
06        local truckNetworkOwner = playersTruck.VehicleSeat:GetNetworkOwner()
07        -- lets make sure the networkowner is the one in the seat
08        if (truckNetworkOwner.Name == player.Name) then
09        -- network owner is in the driver's seat
10            if (arg1 == "up") then
11                print (vehicleName.." Going Up!")
12                local startingCFrame = playersTruck.GrabberAssembly:GetPrimaryPartCFrame()
13                local newCFrame = startingCFrame + Vector3.new(0, 5, 0)
14                print("Start: ",startingCFrame)
15                print("New: ", newCFrame)                  
View all 32 lines...

end)

In order for the new CFRAME to take effect, do I need to break the joint between the grabber assembly and the beam, then remake it after its done moving?

If anyone can help me with this scripting issue I would really appreciate it. Thanks!

  • EngineerTim
0
Sorry about the layout. It looked much cleaner in NotePad++ EngineerTim 5 — 9y
0
Sorry I can't be bothered helping anyone now I almost had a heart attack and I had to carry a new lounge set into my house. UniversalDreams 205 — 9y

Answer this question